🌐 EN | 🇯🇵 JP | Last sync: 2025-11-18

Chapter 1: The Policy Landscape of Materials Science

Policy Landscape - Global Materials Science Policy and National Strategies

📖 Reading time: 25-35 min 📊 Difficulty: Beginner 💻 Code examples: 4

Materials science is a foundational technology for society, and countries around the world promote it as a national strategy. This chapter covers an overview of materials science policies in major countries—Japan, the United States, the EU, China, South Korea, and others—the mechanisms of industry-government-academia collaboration, and how materials science contributes to solving societal challenges such as climate change, energy, and security.

Learning Objectives

By reading this chapter, you will be able to:


1.1 Why Materials Science Becomes a Policy Focus

The Societal Importance of Materials Science

Materials science is a foundational technology supporting modern society. Almost every product that supports our lives—smartphones, electric vehicles, aircraft, medical devices, renewable energy, and more—is made possible by advances in materials science.

Societal challenges and materials science:

💡 Key Point: When Materials Change, Society Changes

Looking back at history, advances in materials—the Bronze Age, the Iron Age, the Silicon Age—have driven the development of civilization. Even today, just as the invention of the lithium-ion battery (2019 Nobel Prize in Chemistry) enabled the mobile revolution and the spread of EVs, breakthroughs in materials are the key to societal transformation.

Materials Science as Policy

The reasons many countries place materials science at the core of their national strategies are as follows:

Reason Explanation Concrete Example
Economic impact The materials industry has a huge market size and a high job-creation effect Global advanced materials market: $500B+ (2023)
Technological sovereignty Self-sufficiency in critical materials is directly linked to security Procurement risks for rare earths and semiconductor materials
Ripple effects Materials technology spreads across many industries (automotive, electronics, aerospace) Carbon fiber composites → aircraft weight reduction → 30% fuel efficiency improvement
SDGs contribution Essential for achieving the Sustainable Development Goals SDG7 (Energy), SDG13 (Climate Change)

1.2 Materials Science Policies of Major Countries

🇯🇵 Japan: Materials Innovation Strengthening Strategy

Overview: The "Materials Innovation Strengthening Strategy," formulated by the Ministry of Education, Culture, Sports, Science and Technology (MEXT) in 2021, is a comprehensive policy aiming to strengthen Japan's international competitiveness in materials science.

Key measures:

📊 Japan's Strength: High-Performance Materials

Japan holds the world's top share in high-performance materials fields such as carbon fiber, lithium-ion battery materials, and semiconductor materials. However, it lags behind the US and China in digitalization and AI utilization, making DX promotion an urgent challenge.

🇺🇸 United States: Materials Genome Initiative (MGI)

Overview: Announced by President Obama in 2011, the MGI is a national initiative aiming to halve the materials development period.

Key concepts:

flowchart LR A[Computational Science
First-Principles] --> D[Integrated Platform] B[High-Throughput Experiments
Robotic Synthesis] --> D C[Machine Learning & AI
Data Mining] --> D D --> E[Materials Development Period
20 years→10 years] style A fill:#e3f2fd,stroke:#1976d2,stroke-width:2px style B fill:#fce7f3,stroke:#f093fb,stroke-width:2px style C fill:#fff3e0,stroke:#f57c00,stroke-width:2px style D fill:#c8e6c9,stroke:#388e3c,stroke-width:2px style E fill:#ffcdd2,stroke:#c62828,stroke-width:2px

🇪🇺 EU: Horizon Europe - Advanced Materials

Overview: In Horizon Europe (2021-2027, budget €95.5B), the EU's research and innovation framework program, advanced materials is one of the priority areas.

Priority areas:

🇨🇳 China: Guide for New Materials Industry Development (2016-2020) / 14th Five-Year Plan (2021-2025)

Overview: As part of "Made in China 2025," which aims to make China a "manufacturing superpower," China positions new materials as one of ten key priority fields.

Key targets:

⚠️ Note: Geopolitical Aspects

Materials science has not only an economic but also a security dimension. For example, China accounting for about 70% of the world's rare earth production poses a supply risk for other countries. For this reason, countries treat strengthening supply chain resilience and developing substitute materials as policy challenges.

🇰🇷 South Korea: Materials R&D Roadmap 2030

Overview: South Korea pursues a materials development strategy specialized in specific fields such as semiconductors, displays, and secondary batteries.

Strategic priorities:

1.3 The Industry-Government-Academia Collaboration Ecosystem

International Comparison of Collaboration Models

Country/Region Collaboration Model Characteristics
Japan Open innovation hubs Industry-academia-government collaboration centered on NIMS (National Institute for Materials Science). Led by large corporations.
United States Startup ecosystem Active university spin-off ventures. Support through the SBIR (Small Business Innovation Research) program.
EU Consortium type Joint research across multiple countries and institutions. Implemented under the Horizon Europe framework.
China State-led type Strong top-down promotion by the government. Close collaboration among state-owned enterprises, universities, and national research institutes.

Success Story: Lithium-Ion Batteries

The development history of lithium-ion batteries is a typical example illustrating the importance of industry-government-academia collaboration:

1.4 Analysis of Policy Documents with Python

Environment Setup

Install the required libraries:

# Install the required libraries
pip install matplotlib pandas wordcloud

Example 1: Keyword Extraction from Policy Documents

Extract important keywords from a policy document and visualize the most frequent terms.

"""
Example: Keyword Extraction and Visualization from Policy Documents

Purpose: Extract important keywords from a materials science policy document
Level: Beginner
Runtime: ~10 sec
Dependencies: matplotlib, wordcloud
"""

import re
from collections import Counter
import matplotlib.pyplot as plt
from wordcloud import WordCloud

# Sample policy document (in practice, obtained from government materials)
policy_text = """
The Materials Innovation Strengthening Strategy aims to strengthen the
international competitiveness of our nation's materials science and technology
and to contribute to realizing a sustainable society. By integrating
data-driven materials development, materials informatics, computational science,
and experimental techniques, it accelerates the shortening of materials
development periods and the creation of high-performance materials. It also
promotes industry-academia-government collaboration and strengthens the
formation of open innovation hubs, human resource development, and
international cooperation. Priority fields include rechargeable battery
materials, carbon fiber composites, semiconductor materials, biomaterials,
and quantum materials.
"""

# Simple English stopword list (common words carry little meaning as keywords)
stopwords = {'the', 'and', 'of', 'to', 'in', 'it', 'by', 'our', 'as', 'for',
             'also', 'that', 'with', 'these', 'this', 'are', 'is', 'be',
             'from', 'on', 'at', 'or', 'an'}

# Tokenize into words (keywords are typically multi-letter content words)
words = re.findall(r'[a-z][a-z-]+', policy_text.lower())
words = [w for w in words if len(w) > 3 and w not in stopwords]

# Count frequent words
word_counts = Counter(words)
top_words = word_counts.most_common(15)

# Visualization
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(14, 6))

# Bar chart
word_labels, counts = zip(*top_words)
ax1.barh(word_labels, counts, color='#f093fb')
ax1.set_xlabel('Frequency', fontsize=12)
ax1.set_title('Key Terms in the Policy Document (Top 15)', fontsize=14, fontweight='bold')
ax1.invert_yaxis()

# Word cloud
wordcloud = WordCloud(
    width=800,
    height=600,
    background_color='white',
    colormap='Purples'
).generate(' '.join(words))

ax2.imshow(wordcloud, interpolation='bilinear')
ax2.axis('off')
ax2.set_title('Word Cloud', fontsize=14, fontweight='bold')

plt.tight_layout()
plt.savefig('policy_keywords.png', dpi=300, bbox_inches='tight')
plt.show()

print("Keyword extraction complete!")
print(f"\nTop 5 key terms:")
for word, count in top_words[:5]:
    print(f"  {word}: {count} times")

Example 2: Visualizing R&D Investment by Country

Compare and visualize the materials science R&D investment of major countries.

"""
Example: Comparison of Materials Science R&D Investment by Country

Purpose: Visualize the R&D investment trends of major countries
Level: Beginner
Runtime: ~5 sec
Dependencies: matplotlib, pandas
"""

import pandas as pd
import matplotlib.pyplot as plt

# Sample data (in practice obtained from the OECD Science, Technology and Innovation Scoreboard, etc.)
data = {
    'Year': [2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022],
    'Japan': [2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.2, 3.4],  # Unit: billion USD
    'USA': [8.5, 9.0, 9.5, 10.0, 10.5, 11.0, 11.8, 12.5],
    'EU': [6.0, 6.2, 6.5, 6.8, 7.0, 7.3, 7.8, 8.2],
    'China': [5.0, 6.5, 8.0, 9.5, 11.0, 12.5, 14.0, 15.5],
    'Korea': [1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.9, 2.1]
}

df = pd.DataFrame(data)

# Visualization
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(14, 6))

# Trend graph
for country in ['Japan', 'USA', 'EU', 'China', 'Korea']:
    ax1.plot(df['Year'], df[country], marker='o', linewidth=2, label=country)

ax1.set_xlabel('Year', fontsize=12)
ax1.set_ylabel('R&D Investment (billion USD)', fontsize=12)
ax1.set_title('Trends in Materials Science R&D Investment by Major Countries', fontsize=14, fontweight='bold')
ax1.legend()
ax1.grid(True, alpha=0.3)

# Investment comparison for 2022 (bar chart)
latest_year = df[df['Year'] == 2022].iloc[0]
countries = ['Japan', 'USA', 'EU', 'China', 'Korea']
investments = [latest_year[c] for c in countries]

colors = ['#f093fb', '#4285f4', '#34a853', '#ea4335', '#fbbc04']
ax2.bar(countries, investments, color=colors)
ax2.set_ylabel('R&D Investment (billion USD)', fontsize=12)
ax2.set_title('R&D Investment by Country in 2022', fontsize=14, fontweight='bold')
ax2.grid(True, alpha=0.3, axis='y')

plt.tight_layout()
plt.savefig('research_investment_comparison.png', dpi=300, bbox_inches='tight')
plt.show()

print("📊 Analysis results:")
print(f"Investment growth rate from 2015 to 2022:")
for country in countries:
    growth = ((df[country].iloc[-1] / df[country].iloc[0]) - 1) * 100
    print(f"  {country}: {growth:.1f}%")

Example 3: Time-Series Analysis of Policy Trends

Analyze how priority fields have changed across past policy documents.

"""
Example: Time-Series Changes in Policy Priority Fields

Purpose: Track the evolution of priority keywords in policy documents
Level: Intermediate
Runtime: ~10 sec
Dependencies: pandas, matplotlib
"""

import pandas as pd
import matplotlib.pyplot as plt

# Sample data: number of mentions of priority fields in policy documents each year
data = {
    'Year': [2015, 2017, 2019, 2021, 2023],
    'Nanomaterials': [45, 40, 35, 30, 25],
    'Composite Materials': [30, 35, 40, 42, 45],
    'Battery Materials': [20, 30, 45, 60, 75],
    'Biomaterials': [15, 20, 25, 35, 40],
    'Carbon-Neutral Materials': [5, 10, 25, 50, 70],
    'Materials Informatics': [10, 20, 35, 55, 65]
}

df = pd.DataFrame(data)

# Visualization: stacked area chart
fig, ax = plt.subplots(figsize=(12, 7))

fields = ['Nanomaterials', 'Composite Materials', 'Battery Materials', 'Biomaterials',
          'Carbon-Neutral Materials', 'Materials Informatics']
colors = ['#e3f2fd', '#bbdefb', '#90caf9', '#64b5f6', '#42a5f5', '#2196f3']

ax.stackplot(df['Year'],
             [df[field] for field in fields],
             labels=fields,
             colors=colors,
             alpha=0.8)

ax.set_xlabel('Year', fontsize=12)
ax.set_ylabel('Number of Mentions in Policy Documents', fontsize=12)
ax.set_title('Evolution of Priority Fields in Materials Science Policy (2015-2023)', fontsize=14, fontweight='bold')
ax.legend(loc='upper left', fontsize=10)
ax.grid(True, alpha=0.3, axis='y')

plt.tight_layout()
plt.savefig('policy_trend_analysis.png', dpi=300, bbox_inches='tight')
plt.show()

print("🔍 Trend analysis:")
print("\nRapidly growing fields:")
for field in fields:
    growth = df[field].iloc[-1] - df[field].iloc[0]
    if growth > 40:
        print(f"  ✨ {field}: +{growth} mentions ({df[field].iloc[0]}→{df[field].iloc[-1]})")

print("\nDeclining fields:")
for field in fields:
    growth = df[field].iloc[-1] - df[field].iloc[0]
    if growth < 0:
        print(f"  ⚠️ {field}: {growth} mentions ({df[field].iloc[0]}→{df[field].iloc[-1]})")

Example 4: Extracting Information from a Policy Database

Retrieve and analyze data from a (virtual) publicly available policy database.

"""
Example: Simulation and Analysis of a Policy Database

Purpose: Filtering and statistical analysis of policy data
Level: Intermediate
Runtime: ~5 sec
Dependencies: pandas
"""

import pandas as pd
import numpy as np

# Virtual policy database (in practice obtained from an API, etc.)
np.random.seed(42)
policies = []

countries = ['Japan', 'USA', 'EU', 'China', 'Korea']
categories = ['Research Funding', 'Human Resource Development', 'Industry-Academia Collaboration', 'International Cooperation', 'Standardization']
years = range(2015, 2024)

for _ in range(100):
    policies.append({
        'Country': np.random.choice(countries),
        'Category': np.random.choice(categories),
        'Year': np.random.choice(years),
        'Budget_Million_USD': np.random.randint(10, 500),
        'Num_Institutions': np.random.randint(5, 50)
    })

df = pd.DataFrame(policies)

# Analysis 1: Number of policies by country and category
policy_count = df.groupby(['Country', 'Category']).size().unstack(fill_value=0)

print("=" * 60)
print("Number of Policies by Country and Category")
print("=" * 60)
print(policy_count)

# Analysis 2: Budget statistics
print("\n" + "=" * 60)
print("Average Budget by Country (Million USD)")
print("=" * 60)
budget_stats = df.groupby('Country')['Budget_Million_USD'].agg(['mean', 'sum', 'count'])
budget_stats.columns = ['Mean', 'Total', 'Policy Count']
print(budget_stats.round(1))

# Analysis 3: Trend analysis
print("\n" + "=" * 60)
print("Number of Policies by Year")
print("=" * 60)
yearly_trend = df.groupby('Year').size()
print(yearly_trend)

# Analysis 4: Extracting the top policies
print("\n" + "=" * 60)
print("Top 5 Policies by Budget")
print("=" * 60)
top_policies = df.nlargest(5, 'Budget_Million_USD')[['Country', 'Category', 'Year', 'Budget_Million_USD']]
print(top_policies.to_string(index=False))

# Visualization (budget comparison by country)
import matplotlib.pyplot as plt

fig, ax = plt.subplots(figsize=(10, 6))
budget_by_country = df.groupby('Country')['Budget_Million_USD'].sum().sort_values(ascending=False)
budget_by_country.plot(kind='bar', ax=ax, color='#f093fb')
ax.set_ylabel('Total Budget (Million USD)', fontsize=12)
ax.set_title('Total Policy Budget by Country (2015-2023)', fontsize=14, fontweight='bold')
ax.set_xlabel('Country', fontsize=12)
plt.xticks(rotation=0)
plt.grid(True, alpha=0.3, axis='y')
plt.tight_layout()
plt.savefig('budget_by_country.png', dpi=300, bbox_inches='tight')
plt.show()

print("\n✅ Analysis complete! Please check the graph.")

1.5 Chapter Summary

What We Learned

Key Points

1. Materials science is a "foundational × strategic" technology

Materials are the foundation of every industry and, at the same time, the key to solving strategic challenges such as climate change and energy security.

2. Regional differences in policy

Depending on each country's or region's strengths, industrial structure, and societal challenges, the priority fields and promotion methods of policy differ.

3. The shift toward data-driven approaches

Worldwide, materials development is shifting from an experiment-centered approach to one that leverages computational science, AI, and databases.

To the Next Chapter

In the next chapter, we will learn about sustainability and environmental regulations. We will grasp the overall picture of the environmental regulations that materials scientists should understand, such as the EU Green Deal, the circular economy, life cycle assessment (LCA), and REACH regulations.

Exercises

Exercise 1: Policy Comparison (Difficulty: Easy)

Problem: Identify the two biggest differences between Japan's Materials Innovation Strengthening Strategy and the US MGI, and explain the background of each.

Hint: Consider the industrial structure, the degree of digitalization, and the historical background of the policies.

Exercise 2: Keyword Analysis with Python (Difficulty: Medium)

Problem: Analyze an actual policy document (downloadable from the websites of MEXT or NEDO) using the keyword extraction script from Example 1, and extract the top 10 key terms.

Hint: To convert a PDF to text, you can use the pdfplumber library.

Exercise 3: Investment Trend Prediction (Difficulty: Hard)

Problem: Using the data from Example 2, predict the R&D investment of Japan and China for 2025 using linear regression. Visualize the prediction results and evaluate the accuracy.

Hint: Use sklearn.linear_model.LinearRegression and evaluate the accuracy with the R² score.

References

  1. MEXT (2021). Materials Innovation Strengthening Strategy. https://www.mext.go.jp/
  2. White House (2011). Materials Genome Initiative for Global Competitiveness. https://www.mgi.gov/
  3. European Commission (2021). Horizon Europe Strategic Plan 2021-2024. Horizon Europe Official Page
  4. Ministry of Industry and Information Technology of the People's Republic of China (2016). Guide for New Materials Industry Development.
  5. OECD (2023). Science, Technology and Innovation Scoreboard.

Disclaimer