WIA-AI-009 | Chapter 3

SHAP: Shapley Additive Explanations

Introduction to SHAP

SHAP (SHapley Additive exPlanations) represents one of the most theoretically grounded and widely adopted approaches to explainable AI. Developed by Scott Lundberg and Su-In Lee in 2017, SHAP builds on game theory concepts to provide a unified framework for interpreting model predictions. Its mathematical rigor and desirable theoretical properties make it a cornerstone of the WIA-AI-009 standard.

At its core, SHAP answers a deceptively simple question: How much did each feature contribute to moving the model's prediction away from the average prediction? The answer provides both local explanations for individual predictions and, through aggregation, global insights into model behavior. This dual capability, combined with provable guarantees about explanation quality, makes SHAP exceptionally valuable for high-stakes applications.

弘益人間 Connection: SHAP embodies the principle of fairness—borrowed from cooperative game theory—ensuring that credit for predictions is distributed equitably among features. This mathematical fairness translates to human fairness in understanding AI decisions.

Game Theory Foundation: Shapley Values

To understand SHAP, we must first understand Shapley values, a concept from cooperative game theory introduced by Lloyd Shapley in 1951 (for which he later won the Nobel Prize in Economics). The fundamental problem Shapley addressed was: In a cooperative game where players work together to achieve a total payoff, how should that payoff be fairly distributed among the players?

The Cooperative Game Analogy

Consider a simple example: Three friends—Alice, Bob, and Carol—start a company together. After a year, the company makes $300,000 in profit. How should this be divided among the three founders?

A naive approach might split it equally: $100,000 each. But what if we know that:

The Shapley value provides a principled answer: Calculate each person's average marginal contribution across all possible orderings of team formation. If we computed this (we'll see how shortly), we might find that Alice deserves $105,000, Bob $92,000, and Carol $103,000—reflecting each person's actual contribution to the team's success.

From Business to Machine Learning

SHAP applies this same logic to machine learning:

Just as we asked "How much did Alice contribute to the company's success?" SHAP asks "How much did the credit score feature contribute to this loan approval prediction?"

Mathematical Definition of SHAP Values

The SHAP value for feature i is defined as:

φᵢ = Σ [|S|! × (M - |S| - 1)! / M!] × [f(S ∪ {i}) - f(S)]

where the sum is over all possible subsets S of features not containing i,
M is the total number of features,
f(S) is the model's prediction using only features in set S

Let's break down what this formula means:

Intuitive Interpretation

Imagine you're trying to predict loan default risk. You have 10 features. To compute the SHAP value for "credit_score":

  1. Consider every possible subset of the other 9 features
  2. For each subset, make predictions with and without credit_score
  3. The difference is credit_score's marginal contribution for that subset
  4. Average all these marginal contributions (weighted appropriately)
  5. This average is credit_score's SHAP value

With 10 features, there are 2⁹ = 512 subsets to consider. With 100 features, there are 2⁹⁹ subsets— computationally infeasible to enumerate. This is why practical SHAP implementations use approximations and optimizations, which we'll explore shortly.

Desirable Properties of SHAP

SHAP values satisfy four crucial axioms that make them theoretically attractive:

1. Local Accuracy (Additive Property)

The prediction equals the base value (average prediction) plus the sum of all SHAP values:

f(x) = E[f(X)] + Σ φᵢ

This means SHAP values fully account for the prediction. There's no unexplained residual. If the model predicts 0.8 and the base value is 0.5, the SHAP values must sum to 0.3.

Example:
Loan default prediction: 0.73
Average default rate (base): 0.15
SHAP values must sum to: 0.73 - 0.15 = 0.58

credit_score: -0.22 (reduces risk)
debt_ratio: +0.45 (increases risk)
employment_years: -0.18 (reduces risk)
recent_inquiries: +0.28 (increases risk)
other features: +0.25
Total: -0.22 + 0.45 - 0.18 + 0.28 + 0.25 = 0.58 ✓

2. Missingness

If a feature is missing (or has no impact on the model), its SHAP value is zero. This seems obvious but not all explanation methods satisfy this property.

3. Consistency (Monotonicity)

If changing a model increases a feature's marginal contribution everywhere, that feature's SHAP value cannot decrease. This ensures that explanations change consistently with model changes.

4. Symmetry

If two features contribute equally to all predictions, they receive equal SHAP values. This prevents arbitrary inequality in attribution.

Why These Properties Matter: These axioms ensure that SHAP explanations are mathematically sound, don't miss or double-count contributions, and behave predictably. They give us confidence that SHAP values reflect true feature contributions rather than artifacts of the explanation method.

SHAP Variants and Computational Approaches

Computing exact SHAP values is exponentially expensive. The original SHAP paper introduced several approximation methods optimized for different model types:

TreeSHAP

For tree-based models (decision trees, random forests, XGBoost, LightGBM), TreeSHAP computes exact SHAP values in polynomial time by exploiting the tree structure. Instead of enumerating all feature subsets, it traces prediction paths through the trees.

TreeSHAP is remarkably efficient—often only 2-3x slower than making predictions—making it practical for production use. This efficiency, combined with the popularity of tree-based models, makes TreeSHAP one of the most widely deployed XAI methods.

// WIA-AI-009 TreeSHAP implementation example
import { TreeSHAPExplainer } from 'wia-ai-009';

const model = loadXGBoostModel('loan_model.json');
const explainer = new TreeSHAPExplainer(model);

const shapValues = explainer.explain({
  credit_score: 720,
  debt_ratio: 0.35,
  employment_years: 8,
  loan_amount: 250000
});

console.log(shapValues);
// {
//   credit_score: -0.22,
//   debt_ratio: 0.45,
//   employment_years: -0.18,
//   loan_amount: 0.12,
//   base_value: 0.15,
//   prediction: 0.32
// }

KernelSHAP

KernelSHAP is model-agnostic, working with any model type. It approximates SHAP values by:

  1. Sampling feature coalitions (random subsets of features)
  2. Making predictions with those coalitions
  3. Fitting a weighted linear model to estimate each feature's contribution
  4. The linear model's coefficients approximate SHAP values

KernelSHAP trades accuracy for flexibility. With sufficient samples (typically 1,000-10,000), it provides good approximations even for complex neural networks.

LinearSHAP

For linear models, SHAP values have a closed-form solution. If your model is:

f(x) = β₀ + β₁x₁ + β₂x₂ + ... + βₘxₘ

Then the SHAP value for feature i is simply:

φᵢ = βᵢ × (xᵢ - E[Xᵢ])

This means the SHAP value is the coefficient times how much the feature value differs from its average. LinearSHAP is instantaneous and exact.

DeepSHAP

DeepSHAP approximates SHAP values for deep neural networks by backpropagating contribution scores through the network. It's faster than KernelSHAP for neural nets but makes approximations that may not satisfy all SHAP axioms perfectly.

GradientSHAP

For differentiable models, GradientSHAP uses gradients to estimate SHAP values. It randomly samples points along the path from a baseline to the input and averages the gradients, similar to Integrated Gradients.

Visualizing SHAP Values

SHAP provides several powerful visualization techniques that make complex model behavior accessible:

Force Plots (Local Explanations)

Force plots show how each feature pushes the prediction higher or lower from the base value. Red features increase the prediction, blue features decrease it. The width indicates magnitude.

Force Plot Interpretation:
Base value (average): 0.15 ───────────────────────►
+ debt_ratio (0.45) ─────►
+ recent_inquiries (0.28) ──►
- credit_score (0.22) ◄──
- employment_years (0.18) ◄─
Final prediction: 0.48 ───────────────────────►

Summary Plots (Global Feature Importance)

Summary plots aggregate SHAP values across many instances to show global feature importance. They display:

A summary plot might reveal that credit_score is the most important feature overall, and high credit scores consistently decrease default risk while low scores increase it.

Dependence Plots

Dependence plots show how SHAP values for a feature vary with that feature's value, revealing the relationship between feature value and prediction impact.

For example, plotting credit_score on the x-axis and its SHAP value on the y-axis might show a nonlinear relationship: SHAP values drop sharply as credit score increases from 600 to 700, then flatten above 750. This reveals that improving a poor credit score has more impact than further improving a good score.

Interaction Values

SHAP can be extended to capture feature interactions—how the combined effect of two features differs from their individual effects. This helps identify synergies and dependencies between features.

Implementing SHAP in Production

Deploying SHAP in production systems requires attention to performance, consistency, and user experience:

Performance Optimization

Use the Right Variant: TreeSHAP for tree models, LinearSHAP for linear models, KernelSHAP only when necessary.

Batch Processing: If real-time explanations aren't required, compute SHAP values in batch overnight and cache them.

Approximation Tuning: For KernelSHAP, balance sample count against latency requirements. Start with 100 samples for debugging, increase to 1,000+ for production.

Background Data Selection: SHAP requires a background dataset representing "typical" data. Use a representative sample of training data (100-1,000 instances typically suffice).

Consistency Across Requests

Randomized SHAP variants (KernelSHAP) can produce slightly different explanations on repeated requests for the same input. To ensure consistency:

Integration with WIA-AI-009 Format

// WIA-AI-009 standardized SHAP output
{
  "standard": "WIA-AI-009",
  "version": "1.0",
  "explanation_type": "shap",
  "timestamp": "2025-01-20T14:30:00Z",
  "model_info": {
    "model_id": "loan_model_v2.3",
    "model_type": "xgboost",
    "shap_variant": "TreeSHAP"
  },
  "prediction": {
    "value": 0.48,
    "class": "default_risk",
    "confidence": 0.87
  },
  "explanation": {
    "base_value": 0.15,
    "shap_values": {
      "credit_score": -0.22,
      "debt_ratio": 0.45,
      "employment_years": -0.18,
      "recent_inquiries": 0.28,
      "loan_amount": 0.12,
      "age": -0.03
    },
    "feature_values": {
      "credit_score": 720,
      "debt_ratio": 0.52,
      "employment_years": 8,
      "recent_inquiries": 5,
      "loan_amount": 250000,
      "age": 35
    }
  },
  "metadata": {
    "computation_time_ms": 145,
    "background_data_size": 500,
    "shap_sum_check": 0.42
  }
}

SHAP for Different Model Types

The WIA-AI-009 standard provides guidance for applying SHAP across diverse model architectures:

Model Type Recommended SHAP Variant Typical Latency Exactness
Linear/Logistic Regression LinearSHAP < 1ms Exact
Decision Trees TreeSHAP 1-10ms Exact
Random Forest, XGBoost TreeSHAP 10-100ms Exact
Neural Networks DeepSHAP or KernelSHAP 100-5000ms Approximate
SVM, Other KernelSHAP 500-10000ms Approximate

Limitations and Considerations

While SHAP is powerful, it's important to understand its limitations:

Computational Cost

Even with optimizations, SHAP can be expensive for high-dimensional data or complex models. Real-time explanations may be impractical without careful engineering.

Correlation vs. Causation

SHAP values reflect statistical associations in the model, not causal relationships. A high SHAP value means a feature is correlated with the prediction, but changing that feature in the real world might not change the outcome due to confounding variables.

Baseline Dependence

SHAP values depend on the choice of baseline (background dataset). Different baselines can yield different values. The WIA-AI-009 standard recommends using a representative sample of training data as the baseline.

Interpretation Challenges

For models with hundreds of features, SHAP produces hundreds of attribution values per prediction. Presenting all of them overwhelms users. In practice, show only the top 5-10 features by absolute SHAP value.

Correlated Features

When features are highly correlated, SHAP may distribute importance between them in ways that seem arbitrary. The total importance is correct, but individual attributions may vary due to multicollinearity.

Best Practice: Use SHAP as one tool in a comprehensive explainability strategy. Combine it with other methods like LIME for cross-validation, domain knowledge for sanity checking, and counterfactuals for actionability.

Advanced SHAP Techniques

Beyond basic feature attribution, SHAP enables sophisticated analyses:

Conditional Expectations

Instead of marginalizing over all features, condition on realistic feature combinations. This prevents SHAP from considering impossible feature combinations (e.g., "age=20 AND employment_years=30").

Clustered SHAP

Group similar instances and show aggregate SHAP patterns for each cluster. This reveals that the model behaves differently for different subpopulations.

SHAP-based Model Selection

Compare SHAP values across different models to understand not just which performs better, but how their reasoning differs. Model A might rely heavily on feature X while Model B favors feature Y—informing which model to deploy based on domain appropriateness.

Temporal SHAP

Track how SHAP values change over time as models are retrained. Sudden shifts in feature importance can signal concept drift or data quality issues.

Chapter Summary

SHAP (SHapley Additive exPlanations) provides a theoretically rigorous framework for interpreting machine learning models, grounded in cooperative game theory. By treating features as players in a game and predictions as payoffs, SHAP computes each feature's fair contribution to predictions.

The four key axioms—local accuracy, missingness, consistency, and symmetry—ensure that SHAP explanations are mathematically sound and behaviorally sensible. These properties distinguish SHAP from ad-hoc explanation methods, providing confidence that attributions reflect true model behavior.

Practical SHAP implementations (TreeSHAP, KernelSHAP, LinearSHAP, DeepSHAP) make the computationally expensive Shapley value calculation tractable for real-world models. TreeSHAP, in particular, enables efficient exact computation for tree-based models, making it practical for production deployment.

SHAP's versatile visualizations—force plots, summary plots, dependence plots—make complex model behavior accessible to diverse audiences. Force plots explain individual predictions, while summary plots reveal global feature importance patterns.

While powerful, SHAP has limitations: computational cost, baseline dependence, challenges with correlated features, and the fact that attributions reflect correlation not causation. The WIA-AI-009 standard recommends using SHAP as part of a comprehensive explainability strategy, combining it with complementary methods and domain expertise.

Review Questions

  1. Explain the connection between Shapley values from game theory and SHAP values for machine learning. How are "players," "coalitions," and "payoffs" translated?
  2. What are the four axioms that SHAP values satisfy? Why is each important?
  3. Why is computing exact SHAP values computationally expensive? How does TreeSHAP overcome this for tree-based models?
  4. Explain the "local accuracy" property. Why is it desirable that SHAP values sum to the difference between the prediction and base value?
  5. Compare TreeSHAP and KernelSHAP. When would you use each?
  6. What is a SHAP force plot, and what question does it answer?
  7. How can SHAP provide both local (instance-level) and global (model-level) explanations?
  8. What are the main limitations of SHAP? Describe two scenarios where SHAP might give misleading insights.
  9. What role does the "background dataset" play in SHAP computation? How should it be selected?
  10. Explain why SHAP values reflect correlation rather than causation. Why does this matter for practical applications?

Korea Industrial Cluster, National Strategic Technologies, Workforce Development

Korea operates a comprehensive industrial cluster system. Korea Top 12 National Strategic Technologies (5th Science and Technology Master Plan 2023-2027): (1) Semiconductors and Displays (2) Secondary Batteries (3) Advanced Mobility (autonomous driving, UAM) (4) Next-Generation Nuclear (SMR) (5) Advanced Bio (6) Aerospace and Marine (7) Hydrogen (8) Cybersecurity (9) Artificial Intelligence (10) Next-Generation Communications (11) Advanced Robotics and Manufacturing (12) Quantum. 12 fields receive direct investment of 5 trillion KRW annually, cumulative 30 trillion KRW by 2030. Korea Major Industrial Clusters: Pangyo IT Cluster (1,300+ companies, 100 trillion KRW revenue), Gangnam Fintech (200+ companies), Songdo BT Bio Cluster, Daegu Medical Cluster, Ulsan Industry (shipbuilding, petrochemicals, automotive), Changwon Machinery, Changwon National Industrial Complex, Siheung and Banwol (SME manufacturing), Yeosu Petrochemicals, Pyeongtaek Semiconductor (Samsung Electronics Pyeongtaek Campus), Icheon and Cheongju Semiconductor (SK hynix Icheon and Cheongju Campuses), Asan Display (Samsung Display Asan Campus), Gumi Mobile (Samsung Gumi Campus), Pohang Steel (POSCO Pohang Steel Mill), Gwangyang Steel (POSCO Gwangyang Steel Mill), Dangjin Steel (Hyundai Steel Dangjin), Ulsan Automotive (Hyundai Motor Ulsan Plant), Asan Automotive (Hyundai Asan Plant), Kia Gwangju and Sohari, POSCO Gwangyang and Pohang Steel Mills, SK hynix Icheon and Cheongju, Samsung Electronics Hwaseong, Giheung, Pyeongtaek, Onyang, Cheonan, Asan Semiconductor Facilities. Major Industrial Complexes and Techno Valleys: Pangyo Techno Valley (1st 800 companies, 2nd 600 companies, 3rd 1,200 companies), Dongtan Techno Valley, Gwanggyo Techno Valley, Songdo IBD, Yeouido Financial District, Gangnam Teheran-ro Valley, Sihwa, Banwol, Gumi, Ulsan, Changwon, Geoje, Yeosu, Ulsan Mipo, Onsan, Cheongju, Iksan, Gwangyang, Yeosu, POSCO Gwangyang Steel Mill, Asan Bay, Seosan, Songdo, Incheon Airport, Sejong, Cheongna, Geomdan, Pyeongtaek Automotive Industrial Complex, Giheung Semiconductor Complex, Icheon Semiconductor Complex, Asan Display Complex, Gumi Mobile Complex, Changwon National Industrial Complex, Ulsan Mipo National Industrial Complex, Yeosu National Industrial Complex, Onsan National Industrial Complex. Korea Workforce Statistics: STEM undergraduate students 700,000 (26% of all university students), STEM graduate students 170,000, PhD researchers 140,000, STEM doctorates conferred 8,000 annually (Seoul National University 1,200, KAIST 800, POSTECH 400, Yonsei University 700, Korea University 600, UNIST 250, DGIST 100, GIST 200, KISTI 50, KIST and ETRI postdoctoral programs 1,000), information security experts 300,000 (KISA-trained and private), AI experts 50,000 (NIA, IITP, NIPA, Samsung, LG, SK, NAVER, Kakao trained), semiconductor experts 260,000 (Samsung Electronics 60,000, SK hynix 30,000, DB HiTek, SK siltron). National R&D Project Operation: National R&D projects 100,000+ annually (MSIT 35,000, MOTIE 25,000, MSS 20,000, MOE 15,000, others 5,000), R&D participating institutions 25,000+, R&D participating researchers 530,000, National R&D output (papers, patents) 540,000 annually. Korea Corporate R&D Investment Top 10 (2024): Samsung Electronics 28 trillion KRW, LG Electronics 9 trillion KRW, SK hynix 8 trillion KRW, Hyundai Motor 6 trillion KRW, Kia 4 trillion KRW, LG Chem 3.5 trillion KRW, LG Display 3.2 trillion KRW, POSCO 3 trillion KRW, Samsung SDI 2.7 trillion KRW, SK Innovation 2.5 trillion KRW.

Korea Global Standards Cooperation — Quantum, Bio, Aerospace, AI

Korea leads global standardization cooperation in 4th industrial revolution technologies. Korea Quantum Technology Standards: "Quantum Science and Technology Comprehensive Development Plan 2024-2030" (8 trillion KRW R&D), National Quantum Science and Technology Committee, MSIT Quantum Technology Bureau, KIST Quantum Information Research Division, KAIST Quantum Graduate School, POSTECH Quantum Science and Technology Division, KAIST IQC, Seoul National University Quantum Information Center, Korea Institute for Advanced Study Quantum Computing Division, KRISS Quantum Measurement Standards Center, SK Telecom QKD, KT QKD, LG U+ QKD, Samsung SDS PQC, Easy Security, CryptoLab Quantum-Resistant Cryptography, KS X ISO/IEC 18033-3, NIST PQC ML-KEM/ML-DSA/SLH-DSA Korean adoption, QKD ETSI GS QKD series Korean Profile. Korea Next-Generation Communications (5G/6G) Standards: 5G subscribers 35 million, 5G base stations 350,000, 5G dedicated networks 16 operators, 6G Acceleration Council (MSIT 2024), 6G commercialization target 2028, 3GPP Release 18/19/20 Korean participation, KS X 3GPP, Samsung Research 6G, LG Electronics 6G, KT 6G, SK Telecom 6G, LG U+ 6G, NIA, ETRI, KAIST, POSTECH, Seoul National University 6G Research Division, O-RAN ALLIANCE Korean Chair Company, M-CORD, OpenRAN Korean Cooperation. Korea AI Standards: KS X ISO/IEC 22989 (AI Concepts and Terminology), KS X ISO/IEC 23053 (AI System Framework), KS X ISO/IEC 5338 (AI System Lifecycle), KS X ISO/IEC 24029 (AI Trustworthiness and Robustness), KS X ISO/IEC 24028 (AI Trustworthiness), KS X ISO/IEC 23894 (AI Risk Management), KS X ISO/IEC 38507 (AI Governance), KS X ISO/IEC 42001 (AIMS Operations System), KS X ISO/IEC 42005 (AI Impact Assessment), AI Framework Act (effective July 2026) Enforcement Decree, Mandatory ex-ante impact assessment for high-impact AI, Samsung Research HyperCLOVA X, LG AI Research EXAONE, SK Telecom A., KT Media AI, NAVER Clova, Kakao i Korean foundation models. Korea Bio Standards: KS X ISO 20387 (Biobanking), KS X ISO 21709, KS X HL7 FHIR R5, SNOMED CT, LOINC, KCD-8, ICD-11, OMOP CDM v5.4, CDISC SDTM, DICOM, HL7 V2, HL7 CDA, MFDS GMP, MFDS Good Tissue Practice, MFDS AI Medical Device Guidelines (50+ approvals), KRIBB, KRICT, KFRI, KIST, KAIST, POSTECH Bio R&D Centers, Samsung Biologics, Celltrion, SK Bioscience, GC Biopharma, LG Chem, Chong Kun Dang, Yuhan Korean Bio Pharmaceuticals, 6 Major Hospitals (Seoul National University, Samsung, Asan, Severance, Bundang Seoul National University, Korea University) Clinical Trial Infrastructure. Korea Aerospace Standards: Korea AeroSpace Administration (KASA, established May 27 2024), MSIT, Ministry of National Defense, KARI, KASI, KIGAM, ETRI, KAI, Hanwha Aerospace, Hanwha Systems, LIG Nex1, CCSDS, ITU, NORAD, IADC, NASA, ESA, JAXA, CNSA, ISRO Korean Cooperation, KS W ISO 14620, KS W ISO 11227, KS W ISO 27026, Nuri Rocket KSLV-II, KSLV-III, Danuri KPLO, Next-Generation Reconnaissance Satellite 425 Project, Arirang, Cheollian, KOMPSAT, CAS500 series. Korea Secondary Battery Standards: "3rd Secondary Battery Industry Development Strategy 2024-2030", MOTIE Secondary Battery Bureau, LG Energy Solution, Samsung SDI, SK On, POSCO Future M, EcoPro BM, L&F, DI Dongil, Samsung SDI Korean Secondary Battery 6 Companies, KS C IEC 62660, KS C IEC 62619, KS C IEC 62133, UN ECE R100, UN/ECE R136 Korean Adoption. Korea Semiconductor Standards: Samsung Electronics (HBM3E, HBM4, DDR5, LPDDR5X), SK hynix (HBM3E 12-Hi, HBM4), DB HiTek, SK siltron, SK Enpulse, Dongjin Semichem, Seoul Semiconductor, Simmtech, Samsung Display, LG Display, JEDEC, SEMI, IEEE, KS C IEC 60068, UCIe 1.1/2.0, CXL 3.0/3.1, HBM4 Standardization, DDR6 Standardization, LPDDR6 Standardization, MRAM, ReRAM, PCRAM Korean Standards Adoption.

Korea City, Regional, Education, Culture Statistics

Korea operates city, regional, education, and cultural infrastructure with the following statistics. Korea 17 Metropolitan Governments: Seoul Metropolitan City (population 9.45 million), Busan Metropolitan City (3.27 million), Daegu Metropolitan City (2.36 million), Incheon Metropolitan City (3.00 million), Gwangju Metropolitan City (1.43 million), Daejeon Metropolitan City (1.43 million), Ulsan Metropolitan City (1.09 million), Sejong Special Self-Governing City (0.39 million), Gyeonggi Province (13.94 million), Gangwon Special Self-Governing Province (1.52 million), Chungcheongbuk Province (1.59 million), Chungcheongnam Province (2.12 million), Jeollabuk Special Self-Governing Province (1.75 million), Jeollanam Province (1.81 million), Gyeongsangbuk Province (2.56 million), Gyeongsangnam Province (3.27 million), Jeju Special Self-Governing Province (0.67 million). 17 metropolitan governments and 226 city/county/district administrations. Korea Digital Education Infrastructure: Elementary, middle, high school students 5.4 million, universities 187 (4-year 192, 2-year colleges 134, graduate schools 1,200), university enrollment 2.8 million, doctoral students 170,000, lifelong learners 22 million, digital textbook coverage 78% (2024), EBS, KOOC (Korea Massive Open Online Course), KOCW (Korea OpenCourseWare), K-MOOC operation. K-Content Industry Statistics (2024): K-Content total revenue 158 trillion KRW, K-Content exports 14 trillion KRW (BTS, BLACKPINK, NewJeans K-POP), K-Drama (Squid Game, Crash Landing on You), K-Game (PUBG, Lineage W, MapleStory), K-Webtoon (NAVER Webtoon, Kakao Webtoon), K-Publishing, K-Broadcasting. Korea Creative Content Agency (KOCCA), Ministry of Culture Sports and Tourism (MCST), Korea Communications Agency (KCA), Korea Culture Information Service Agency, Korean Film Archive, Korea Publishing Industry Promotion Agency, National Gugak Center, National Institute of Korean Language, National Museum of Korea, National Library of Korea operations. Korea Medical Cost Statistics: National Health Insurance total expenditure 110 trillion KRW (2024), medical institution treatment costs 95 trillion KRW, pharmaceutical costs 24 trillion KRW, per capita medical expense 2.2 million KRW per year, elderly (65+) medical expense ratio 45%, Long-term Care Insurance subscribers 52 million, medical institutions 96,000+, general hospitals 350, dental/oriental medicine/pharmacy/health centers 80,000+, NHIS coverage 99.7%, MyData medical data integration 4 designated combination specialists. Korea Social Welfare Statistics (2024): Social welfare total budget 244 trillion KRW, National Pension subscribers 22 million, National Pension recipients 7 million, Basic Pension recipients 7 million, Long-term Care recipients 1.1 million, Child Allowance recipients 2.8 million, Basic Livelihood Security recipients 2.3 million, Earned Income Tax Credit recipient households 4.8 million, Education Benefit recipients 4.7 million. Korea Environment Statistics (2024): 22 national parks, 15 provincial parks, 45 Ramsar wetlands, 12,587 species registered Korean Peninsula wildlife, Korean Peninsula forest area 6.33 million ha (63% of land), CO2 emissions 650 million tons (2030 reduction target 440 million tons, -32.5%), renewable energy share 9% (2024, 2030 target 21.6%), accumulated EVs 600,000, accumulated hydrogen vehicles 35,000. Korea Safety / Security Statistics: Police officers 127,000, firefighters 65,000, 119 calls 6.7 million per year, 112 calls 18 million per year, Coast Guard 10,000, National Cyber Security Center (NCSC) operation, KISA cyber incident reports 280,000 per year, FSEC financial cyber incident reports 40,000 per year, National Disaster Management System (CDSS), National Crisis Management Center operation.

Korea International Standards Activities and Multilateral Cooperation

Korea operates international standardization activities and multilateral cooperation. ISO TC/SC Korean Secretariat Activities: ISO/TC 22 (Road vehicles) Korean Secretariat, ISO/TC 184 (Automation systems) Korean Secretariat, ISO/TC 215 (Health informatics) Korean Secretariat, ISO/TC 229 (Nanotechnologies) Korean Secretariat, ISO/TC 268 (Sustainable cities) Korean Secretariat, ISO/TC 307 (Blockchain) Korean Secretariat, ISO/IEC JTC 1 (Information technology) Korean Secretariat 50+ fields, ISO/IEC JTC 1/SC 27 (Information security) Korean Chair, ISO/IEC JTC 1/SC 38 (Cloud computing) Korean Chair, ISO/IEC JTC 1/SC 42 (AI) Korean Vice-Chair. IEC TC Korean Secretariat: IEC TC 9 (Electric railway) Korean Secretariat, IEC TC 14 (Power transformers) Korean Secretariat, IEC TC 22 (Power electronics) Korean Secretariat, IEC TC 47 (Semiconductors) Korean Secretariat, IEC TC 86 (Fibre optics) Korean Secretariat, IEC TC 100 (Audio-video) Korean Secretariat, IEC TC 110 (Electronic display) Korean Secretariat, IEC TC 119 (Printed electronics) Korean Secretariat, IEC SC 65A/B/C/D (Industrial-process measurement) Korean Chair. ITU-T Study Group Korean Chair Activities: SG 9 (Cable networks), SG 13 (Future networks), SG 15 (Networks technologies), SG 16 (Multimedia), SG 17 (Security), SG 20 (IoT and smart city), SG 21 (Multimedia and metaverse) Korean Chair or Vice-Chair activities. 3GPP RAN/SA Korean Chairs: 3GPP RAN1 (Radio Layer 1), RAN2 (Radio Layer 2 and 3 RR), RAN3 (Iub, Iuc, Iur interfaces), RAN4 (Radio performance and protocol aspects), SA1 (Services), SA2 (Architecture), SA3 (Security), SA4 (Codec), SA5 (Telecom management), SA6 (Mission-critical applications) Korean Chair or Vice-Chair. Korea contributed 7,800+ 5G standard proposals (through 3GPP Release 18), 1,200+ 6G standard proposals. IEEE 802 Korean Chairs: 802.3 (Ethernet) Working Group, 802.11 (WiFi) Working Group, 802.15 (WPAN) Working Group, 802.1 (Bridging) Working Group, 802.16 (WiMAX) Working Group, 802.18 (Radio Regulatory) Korean Chair or Vice-Chair. OECD CSTP, UN ESCAP, APEC SCSC Korean Cooperation: OECD Committee for Scientific and Technological Policy Korean member, UN Economic and Social Commission for Asia and the Pacific Korean member, APEC Sub-Committee on Standards and Conformance Korean member, APEC Engineers Coordinating Committee Korean member, ANSI (American National Standards Institute) Korean cooperation, BSI (British Standards Institution) Korean cooperation, DIN (Deutsches Institut fur Normung) Korean cooperation, AFNOR (Association Francaise de Normalisation) Korean cooperation, JISC (Japanese Industrial Standards Committee) Korean cooperation, SAC (Standardization Administration of China) Korean cooperation. W3C, OASIS, IETF Korean Cooperation: W3C Korea Office operation (10+ working groups), OASIS Korea Office operation (LegalDocML, LegalRuleML, SAML, UBL, BPM working groups), IETF Korea Cooperation (KS X IETF series Korean adoption), ICANN Korean cooperation, KRNIC (Korea Network Information Center) operation, KISA Korea Internet Center, BGP Korea, NCSC (National Cyber Security Center). WIPO, UNCTAD, WTO, G20 Korean Cooperation: WIPO (World Intellectual Property Organization) Korean member, UNCTAD (UN Conference on Trade and Development) Korean member, WTO (World Trade Organization) Korean member, G20 Korean member (joined 1999), G7 cooperation, OECD member (1996), UN member (1991), KEDO (Korean Peninsula Energy Development Organization), Six-Party Talks (South/North Korea, US, China, Russia, Japan), Korea-US, Korea-Japan, Korea-China bilateral standards cooperation agreements.