← Back to Table of Contents
Chapter 1

Understanding AI Bias

Artificial Intelligence bias is a fundamental challenge that affects the fairness and reliability of AI systems. This chapter provides a comprehensive introduction to understanding what bias is, how it manifests in AI systems, and why addressing it is crucial for building ethical technology that benefits all humanity.

What is AI Bias?

AI bias refers to systematic and repeatable errors in machine learning systems that create unfair outcomes, such as favoring one arbitrary group of users over others. Unlike random errors, bias represents consistent deviation from the truth in a particular direction, often disadvantaging specific demographic groups or perpetuating historical inequalities.

Bias in AI systems can emerge at multiple stages of the machine learning pipeline: during data collection, feature engineering, model training, evaluation, and deployment. Understanding these sources is the first step toward building fairer systems.

弘益人間 Perspective

The principle of 弘益人間 (Benefit All Humanity) reminds us that AI systems should serve everyone equitably. Bias detection and mitigation is not just a technical challenge—it's a moral imperative to ensure our technology doesn't perpetuate or amplify societal inequalities.

Types of AI Bias

1. Historical Bias

Historical bias occurs when the data used to train AI systems reflects past prejudices and discriminatory practices. Even with perfect sampling and feature selection, if the world itself is biased, the data will capture that bias.

Example: Hiring Systems

A resume screening AI trained on historical hiring decisions might learn that certain names, schools, or ZIP codes are correlated with "successful" candidates. However, these patterns may reflect past discrimination rather than actual job performance. The AI perpetuates these biases into future hiring decisions.

2. Representation Bias

Representation bias emerges when the training data doesn't adequately represent the population the model will serve. Some groups may be underrepresented, overrepresented, or entirely absent from the training data.

# Example: Checking representation in dataset
import pandas as pd

def check_representation(df, sensitive_attribute):
    """
    Analyze representation of different groups in dataset
    """
    total_count = len(df)
    group_counts = df[sensitive_attribute].value_counts()

    print(f"Total samples: {total_count}")
    print("\nGroup Distribution:")
    for group, count in group_counts.items():
        percentage = (count / total_count) * 100
        print(f"{group}: {count} ({percentage:.2f}%)")

        # Flag if representation is below 10%
        if percentage < 10:
            print(f"  ⚠️ WARNING: {group} is underrepresented!")

    return group_counts

# Usage
representation = check_representation(dataset, 'ethnicity')

3. Measurement Bias

Measurement bias occurs when the features used to train models are chosen, measured, or proxied in a way that systematically differs across groups. This can happen when different measurement tools or procedures are used for different populations.

Example: Healthcare AI

A diagnostic AI might show different performance across demographic groups because medical devices (like pulse oximeters) have known accuracy differences based on skin tone. The AI learns from measurements that are themselves biased.

4. Aggregation Bias

Aggregation bias arises when a single model is used for groups with different underlying distributions. A "one-size-fits-all" approach may work well for the majority group but perform poorly for minorities.

5. Evaluation Bias

Evaluation bias happens when benchmark datasets or test sets don't adequately represent the target population, leading to misleading performance metrics. A model might achieve high overall accuracy while performing poorly on specific subgroups.

# Example: Disaggregated evaluation by group
from sklearn.metrics import accuracy_score

def evaluate_by_group(y_true, y_pred, groups):
    """
    Evaluate model performance separately for each group
    """
    results = {}

    for group in groups.unique():
        mask = groups == group
        group_acc = accuracy_score(y_true[mask], y_pred[mask])
        results[group] = {
            'accuracy': group_acc,
            'sample_count': mask.sum()
        }

    print("Performance by Group:")
    print("-" * 50)
    for group, metrics in results.items():
        print(f"{group}:")
        print(f"  Accuracy: {metrics['accuracy']:.3f}")
        print(f"  Samples: {metrics['sample_count']}")

    # Check for significant disparities
    accuracies = [m['accuracy'] for m in results.values()]
    max_disparity = max(accuracies) - min(accuracies)
    if max_disparity > 0.1:
        print(f"\n⚠️ WARNING: Accuracy disparity of {max_disparity:.3f} detected!")

    return results

6. Deployment Bias

Deployment bias occurs when an AI system is used in contexts different from those it was designed for, or when the deployment itself creates feedback loops that reinforce bias.

Sources of Bias in Machine Learning

Understanding where bias originates helps us prevent and mitigate it. Here are the primary sources:

Source Description Common Manifestations
Data Collection How data is gathered and selected Sampling bias, selection bias, coverage gaps
Feature Engineering Which features are included/excluded Proxy discrimination, feature correlation with protected attributes
Labeling Process How data is annotated Annotator bias, inconsistent labeling guidelines
Model Architecture Algorithm and design choices Optimization for aggregate metrics, capacity limitations
Training Process How models learn from data Class imbalance, loss function design, regularization
Deployment Context Real-world usage scenarios Distribution shift, feedback loops, user interaction patterns

Real-World Impact of AI Bias

Criminal Justice

Risk assessment tools used in criminal justice have been shown to exhibit racial bias. The COMPAS recidivism prediction system was found to have higher false positive rates for Black defendants and higher false negative rates for White defendants, affecting bail decisions and sentencing.

Hiring and Employment

Amazon's experimental recruiting tool learned to penalize resumes containing the word "women's" (as in "women's chess club") because the historical hiring data showed more men were hired. The company eventually discontinued the tool after failing to guarantee it wouldn't discriminate.

Healthcare

A widely-used healthcare algorithm was found to exhibit racial bias by using healthcare costs as a proxy for health needs. Because Black patients had lower healthcare spending (due to systemic barriers to access), they were systematically assigned lower risk scores despite being sicker.

Facial Recognition

Multiple studies have shown that facial recognition systems have significantly higher error rates for people with darker skin tones, particularly women of color. This has serious implications when these systems are used for security, law enforcement, or identity verification.

Why AI Bias Matters

Ethical Considerations

Biased AI systems can violate fundamental principles of fairness and justice. They may deny opportunities, services, or rights based on protected characteristics, perpetuating discrimination at scale with the veneer of objectivity.

Legal and Regulatory Risks

Many jurisdictions have laws prohibiting discrimination in employment, lending, housing, and other domains. AI systems that exhibit bias may violate anti-discrimination laws such as:

Business Impact

Beyond ethics and compliance, bias has tangible business consequences:

The Challenge of Fairness

Addressing bias is complicated by the fact that there is no single, universally accepted definition of fairness. Different fairness criteria may be mutually exclusive, creating tradeoffs that require careful consideration of context and values.

# Example: Illustrating fairness tradeoffs
import numpy as np

def compare_fairness_metrics(y_true, y_pred, protected_attribute):
    """
    Calculate different fairness metrics to show potential tradeoffs
    """
    groups = np.unique(protected_attribute)

    for group in groups:
        mask = protected_attribute == group

        # Demographic Parity: P(pred=1 | group)
        positive_rate = np.mean(y_pred[mask])

        # Equal Opportunity: P(pred=1 | y=1, group)
        true_positives = np.sum((y_true[mask] == 1) & (y_pred[mask] == 1))
        actual_positives = np.sum(y_true[mask] == 1)
        tpr = true_positives / actual_positives if actual_positives > 0 else 0

        print(f"\nGroup: {group}")
        print(f"  Positive Prediction Rate: {positive_rate:.3f}")
        print(f"  True Positive Rate: {tpr:.3f}")

    print("\nNote: Optimizing for one metric may worsen others!")
    print("Fairness requires context-specific choices.")

Moving Forward: A Systematic Approach

Detecting and mitigating AI bias requires a systematic, multi-faceted approach:

  1. Awareness: Recognize that bias is not just possible but likely in AI systems
  2. Measurement: Use appropriate metrics to quantify bias and fairness
  3. Documentation: Maintain clear records of data sources, modeling decisions, and fairness considerations
  4. Testing: Conduct disaggregated evaluation across demographic groups
  5. Mitigation: Apply appropriate debiasing techniques throughout the ML pipeline
  6. Monitoring: Continuously track fairness metrics in deployed systems
  7. Governance: Establish organizational processes and accountability for fairness

The subsequent chapters of this guide will provide detailed, practical guidance on each of these areas, equipping you with the tools and knowledge needed to build fairer AI systems.

Chapter Summary

Review Questions

  1. What is the difference between AI bias and random error? Why is bias more concerning?
  2. Explain the difference between historical bias and representation bias. Provide an example of each.
  3. How can measurement bias affect a healthcare diagnostic AI system? What are potential consequences?
  4. Describe a scenario where a model could have high overall accuracy but still be unfair. How would you detect this?
  5. Why might proxy features (like ZIP code) lead to discriminatory outcomes even when protected attributes are not directly used?
  6. What are the potential business impacts of deploying a biased AI system? Consider both immediate and long-term effects.
  7. Explain why there is no single "correct" definition of fairness. What factors should inform the choice of fairness criteria?
  8. How does the 弘益人間 philosophy apply to AI bias detection and mitigation? What practical implications does it have?
  9. List three different stages of the ML pipeline where bias can be introduced and describe preventive measures for each.
  10. Why is continuous monitoring important even after deploying a fair AI system? What could change over time?

Korea Industrial, Research, Education Infrastructure Mapping

Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.

Korea Standardization Infrastructure Mapping

Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.

Korea Digital Transformation Detailed Mapping

Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.