Intro
L1
ยท
Quiz
ยท
Lab
L2
ยท
Quiz
ยท
Lab
L3
ยท
Quiz
ยท
Lab
L4
ยท
Quiz
ยท
Lab
Module Test
Is the Robot Being Fair? ยท Introduction

Every System Has a Thumb on the Scale

AI is already making decisions about people โ€” and some of those decisions are wrong in ways that follow a pattern.

In 2018, a researcher named Joy Buolamwini was working on a project at MIT when she noticed something odd: the facial recognition software she was using could not detect her face at all โ€” until she held up a white mask. Buolamwini, who is Black, ran a full study and found that major commercial AI systems misidentified the gender of dark-skinned women up to 35% of the time, compared to less than 1% for light-skinned men. The AI was not broken. It had learned from data that did not represent her. Nobody programmed racism into it. It learned the pattern from history.

That same year, Amazon quietly scrapped an AI hiring tool it had been building for years after discovering it was systematically downgrading resumes that included the word "women's" โ€” as in "women's chess club" โ€” and ranking graduates of all-women's colleges lower than men. The system had been trained on a decade of Amazon's own hiring records, which mostly reflected who had been hired before. The past became the rule. The AI treated that rule as fairness.

This course is about understanding how that happens โ€” not just once, but over and over, in systems affecting who gets a loan, who gets flagged by police, who gets a job interview. You will not need to write code. What you will get is the ability to look at any AI system being used on people and ask the right questions: Where did this data come from? Who does it hurt? Can we even fix it? Those questions matter right now, while these systems are still being built.

Is the Robot Being Fair? ยท Lesson 1 of 4

The Sorting Hat Has a Problem

When an algorithm decides your future, who decided how the algorithm thinks?
If a machine learned everything it knows from a world that wasn't fair โ€” can it ever sort people fairly?

In May 2016, a journalist named Julia Angwin and her team at the news organization ProPublica published a story that made prosecutors, judges, and tech companies deeply uncomfortable. They had obtained the risk scores assigned by a software program called COMPAS โ€” Correctional Offender Management Profiling for Alternative Sanctions โ€” to more than 7,000 people arrested in Broward County, Florida. COMPAS was sold by a company called Northpointe, and courts were using its scores to help decide who should be released before trial and who was too risky to let go.

ProPublica compared the scores to what actually happened over the next two years. They found something alarming. Black defendants who did not go on to commit new crimes were rated as high-risk nearly twice as often as white defendants who also did not reoffend. White defendants who did go on to commit crimes were far more often rated as low-risk. The algorithm was wrong in opposite directions for Black and white people โ€” and those opposite errors both hurt Black defendants most. A software score, not a crime, was influencing whether someone went home or to jail.

Northpointe pushed back. They published their own analysis arguing the tool was fair by a different definition. Academics split into two camps. Courts kept using it. And a tool that nobody fully understood kept helping to decide who stayed free.

What an Algorithm Actually Is

The word "algorithm" sounds technical, but the idea is simple: it is a set of instructions for making a decision. A recipe is an algorithm. So is the scoring system your school uses to calculate grades. The COMPAS tool used answers to a 137-question questionnaire โ€” things like "Have you ever been arrested?" and "Do your friends get in trouble?" โ€” plus demographic information, and combined them into a single number from 1 to 10.

The key thing to understand is that nobody sitting in a room decided "Black defendants should score higher." Instead, the tool learned patterns from historical data โ€” old arrest records, old recidivism data, old court decisions. It found statistical correlations and encoded them as rules. If people in certain zip codes had historically been arrested more often, and if certain zip codes correlated with race due to decades of segregation, then the algorithm absorbed those correlations as if they were neutral facts about risk. They were not neutral facts. They were the echo of old injustices, converted into a number.

Algorithm: A step-by-step set of instructions a computer follows to reach a decision or answer. In AI, algorithms often learn their rules from data rather than having them written out by hand.
Training data: The historical information an AI system learns from. If the history was biased, the AI often learns to repeat that bias.

You can now see something most people miss when they hear "an algorithm decided": algorithms do not appear out of nowhere. They are built by people, trained on data collected by people, in a world shaped by human decisions โ€” including unfair ones. Saying "the algorithm decided" does not remove the human responsibility. It hides it.

Why Historical Data Is Not Neutral

Imagine you wanted to build a tool to predict who would do well in a job, and you trained it on 10 years of your company's hiring data. Sounds reasonable โ€” you're learning from experience. But what if, for those 10 years, your company almost never hired women for senior roles? Your AI would learn: senior-role traits correlate with being male. It would not have been taught that. It would have inferred it from the pattern. This is exactly what happened at Amazon between roughly 2014 and 2017, when engineers discovered their internally built recruiting AI was penalizing resumes that showed female applicants.

This is called historical bias, and it is one of the most common ways AI systems absorb unfairness. The algorithm is doing something technically correct โ€” finding patterns in data โ€” but the data itself reflects a world where certain groups were treated unequally. The AI learns that inequality and then reproduces it, faster and at larger scale than any individual human biases could.

Think About This

In the United States, Black Americans are arrested at roughly twice the rate of white Americans for the same crimes, largely due to documented disparities in policing. If you train a "risk" algorithm on arrest records, it will learn that Black people are "riskier" โ€” not because they commit more crimes, but because they are arrested more often. The algorithm reflects policing patterns, not actual behavior. It then gets used to justify more aggressive policing of the same communities. The loop tightens.

The deeper problem: you cannot just "remove race" from the data and fix it. Many variables that seem neutral โ€” zip code, school attended, whether family members have criminal records โ€” are so closely correlated with race in the United States that they function as proxies. Remove race, and those proxies carry the same information. Researchers call this the proxy problem, and it is genuinely hard to solve.

Two Kinds of Fairness That Cannot Both Be True

Here is the part that stops a lot of smart people cold. When ProPublica accused COMPAS of being unfair, Northpointe did not just say "you're wrong." They said "we're using a different definition of fairness โ€” and by our definition, we're right." And mathematically, they were.

ProPublica was measuring error rate balance โ€” whether the tool made mistakes at equal rates for Black and white defendants. It did not. Black defendants were labeled high-risk when they were actually low-risk at nearly double the rate of white defendants.

Northpointe was measuring calibration โ€” whether, among everyone labeled high-risk, the same percentage actually reoffended regardless of race. By this standard, the tool was fair: if you scored 7 out of 10, your likelihood of reoffending was roughly the same whether you were Black or white.

The Uncomfortable Truth

In 2016, computer scientist Jon Kleinberg and colleagues proved mathematically that when two groups have different base rates of an outcome โ€” meaning crime is reported at different rates in different communities โ€” you cannot simultaneously satisfy both definitions of fairness. You have to choose. No algorithm, no matter how cleverly designed, escapes this constraint. It is not a programming bug. It is a mathematical theorem.

This is the ethical question you should sit with: If a society cannot agree on a single definition of fairness, can an algorithm ever be fair? Or does building any scoring system require making a political choice โ€” and then hiding it inside math? There is no clean answer. The people currently deploying these systems are making that choice right now, and most of them are not announcing it.

What You Now Know That Most Adults Don't

Knowing what you now know changes how you read every headline that says "an AI system was found to be biased." Because you understand it is never one thing. It could be biased training data that encoded historical inequality. It could be a proxy variable carrying information that should have been excluded. It could be a deliberate choice of one fairness definition over another โ€” made quietly, without public debate. Or it could be all three at once.

In 2022, the U.S. Department of Housing and Urban Development filed a complaint against a Facebook advertising algorithm that was automatically targeting housing ads by race, even though advertisers had not asked it to. The algorithm was optimizing for "engagement" โ€” showing ads to people likely to click. But because housing segregation meant different groups used Facebook differently, the optimization reproduced segregation. Nobody at Facebook explicitly programmed housing discrimination. The system learned it.

The COMPAS story is not an old story. As of 2024, algorithmic risk assessment tools are used in some form in nearly every U.S. state's criminal justice system. Millions of sentencing, parole, and bail decisions have incorporated scores like these. The debate ProPublica started has not been resolved. Courts have repeatedly declined to require that the underlying code be disclosed to defendants โ€” meaning people have been jailed partly based on a secret algorithm they cannot challenge.

You Can Now See This

When someone says "the algorithm is objective," you now know what they're actually claiming โ€” and why that claim deserves serious scrutiny. Algorithms inherit the world they learn from. If you want to know whether an AI system is fair, you need to ask: fair by whose definition, measured how, compared to what, and who made that choice?

Lesson 1 Quiz

Five questions โ€” test your reasoning, not just your memory.
1. ProPublica's 2016 analysis of COMPAS found that the tool was making errors in opposite directions for Black and white defendants. What does this mean in practice?
Exactly. The errors were not random โ€” they were asymmetric. Both types of error (false high-risk and false low-risk) combined to consistently disadvantage Black defendants, even though the tool never explicitly used race as a direct input.
Look again at the story. The issue was not uniform high scores for one group โ€” it was the direction of errors. Incorrect low-risk scores for one group and incorrect high-risk scores for another are very different problems with very different consequences.
2. Why does removing "race" as an input variable often fail to fix racial bias in an algorithm?
Right. Proxy variables are the core of why "just remove race" doesn't work. In a society with historical residential and educational segregation, variables that seem neutral actually contain strong racial signals. The AI can reconstruct the bias without ever seeing explicit race data.
The lesson introduced the proxy problem specifically for this question. Variables that seem race-neutral โ€” zip code, criminal records in the family, school attended โ€” can encode racial patterns due to historical segregation. The AI doesn't need explicit race data to reproduce racial bias.
3. Northpointe argued COMPAS was fair. A new city wants to use a similar tool for predicting school dropout risk. A student argues: "Two different schools have very different dropout rates for historical reasons. You can't make a dropout prediction tool that's fair by ALL definitions for both schools at once." Is the student right?
The student is applying the Kleinberg theorem correctly. When two groups have different base rates of an outcome โ€” here, different baseline dropout rates โ€” satisfying calibration fairness and error-rate-balance fairness simultaneously becomes mathematically impossible. This applies to dropout risk, loan risk, recidivism risk, and any other scored prediction.
Think about what the lesson said about the Kleinberg theorem. The impossibility isn't limited to criminal justice โ€” it applies whenever two groups have different base rates of the outcome being predicted. The student is actually applying the logic from this lesson to a new scenario.
4. What is "historical bias" in an AI system?
Yes. Historical bias is the mechanism by which the past reaches into the present through data. The Amazon hiring tool is the clearest example: nobody programmed it to prefer men, but the training data โ€” reflecting a decade of hiring decisions made by humans who preferred men โ€” taught it to do exactly that.
Historical bias is specifically about the data encoding past injustices โ€” not about the algorithm being old or programmers being deliberately prejudiced. The Amazon hiring tool case shows how it works: the data was the problem, not any individual engineer's intentions.
5. As of 2024, algorithmic risk assessment tools are used in nearly every U.S. state's criminal justice system, and courts have repeatedly declined to require that the underlying code be disclosed to defendants. What is the most serious problem this creates?
This is the accountability problem at its sharpest. If a score influenced a judicial decision โ€” bail, sentencing, parole โ€” due process traditionally requires that the person being judged can understand and challenge the evidence against them. A secret, proprietary algorithm breaks that principle. You can be jailed based on a process you are legally blocked from examining.
The lesson specified the core issue: secrecy. Defendants cannot challenge the score because the code generating it is proprietary and courts have not required disclosure. This is not about appeals or mandatory compliance โ€” it is about whether someone can contest evidence whose origins are hidden from them.

Lab 1 โ€” The Auditor's Chair

You are the investigator. AXIOM is your sparring partner โ€” not your teacher.

Your Role: Algorithm Auditor

A county court system has hired you to review their new "risk assessment" tool before it goes live. The vendor says it is "statistically fair." You have read the ProPublica COMPAS findings and you know about the proxy problem and the impossibility theorem. Your job is to figure out whether "statistically fair" actually means fair โ€” and what questions you would demand answers to before signing off.

AXIOM is another auditor on the case. Knowledgeable, direct, and not here to make you feel good. Push your thinking. AXIOM will push back.

Start by telling AXIOM which definition of fairness you think the court should prioritize โ€” error rate balance or calibration โ€” and why. Then defend it.
AXIOM โ€” Algorithm Auditor
Lab 1
Alright. The vendor just handed us a one-page summary. It says their tool achieves "calibration parity" across racial groups. They're calling it fair. Before you tell me which fairness definition the court should use โ€” do you actually know what calibration parity means in practice, and what it doesn't measure? Start there.
Is the Robot Being Fair? ยท Lesson 2 of 4

The Data Doesn't Know It's Lying

Where does bias actually enter an AI system โ€” and is it always possible to find it before it causes harm?
If an AI system produces a biased outcome but nobody programmed the bias in, who is responsible?

In June 2015, a software developer named Jacky Alcine opened Google Photos on his phone and discovered that the app had automatically tagged photos of him and his girlfriend โ€” both Black โ€” under the label "gorillas." He posted screenshots on Twitter. Google apologized within hours, called it "appalling," and promised a fix. Their actual fix, discovered by Wired journalists in 2018, was to remove the labels "gorilla," "chimp," and "monkey" from the image recognition system entirely โ€” not to fix the underlying problem. As of early 2023, Google Photos still could not label gorillas at all. They deleted the animal rather than fix the bias.

The error had not come from malice. Google's image recognition had been trained on data collected from the internet โ€” and the internet, at that moment, contained far more images of white people than Black people. The AI had less experience recognizing Black faces. When it encountered one and tried to match it to a known category, it reached for the closest match in its limited experience. The dataset's imbalance became a grotesque insult at the moment of use, and the company's response revealed something honest: sometimes it is easier to delete a category than to actually solve the problem.

The Five Places Bias Enters an AI System

Researchers who study algorithmic fairness have mapped out the pipeline through which an AI system is built. Bias can enter at multiple stages โ€” not just one. Understanding this matters because it determines where you look when something goes wrong, and who is responsible for fixing it.

1. Data collection. If the data collected does not equally represent all groups, the system will know some groups better than others. Google Photos' training data underrepresented dark-skinned faces. Medical AI systems trained mostly on data from white patients have been shown to perform worse on patients of other ethnicities. What gets measured, and who gets measured, shapes everything downstream.

2. Labeling. Most AI systems that classify things โ€” images, text, risk categories โ€” require humans to label training examples first. If those human labelers carry their own biases, those biases go directly into the training data. A 2020 study of a widely-used dataset for training sentiment analysis AI found that comments written in African American Vernacular English were labeled as "toxic" by annotators at significantly higher rates than equivalent statements written in standard American English, even when the meaning was the same.

3. Feature selection. "Features" are the variables an AI looks at when making a decision. Choosing which features to include is a human judgment call. If you include zip code, you may be encoding race. If you include prior arrests, you may be encoding policing patterns rather than actual behavior. Each choice embeds assumptions.

Feature: Any variable an AI uses as input when making a prediction. Examples: age, income, zip code, number of prior arrests, reading speed.

4. Optimization target. What are you asking the AI to maximize? Amazon's hiring AI was asked to maximize "similarity to previous successful hires." That sounds neutral โ€” but if previous successful hires were mostly men, "most like them" becomes a proxy for "probably male." The goal itself encodes bias.

5. Feedback loops. This is the most insidious one. Once a system is deployed, its decisions often become part of the next round of training data. If a predictive policing tool sends more officers to neighborhood A, more crimes will be reported in neighborhood A โ€” not because more crimes are happening there, but because there are more officers to observe and report them. The algorithm then "learns" that neighborhood A is high-crime and sends even more officers. The model's own decisions corrupt the data it learns from.

The Pulse Oximeter Problem: Bias in Medicine

In December 2020, a study in the New England Journal of Medicine documented something that had quietly been harming patients for decades. Pulse oximeters โ€” the small clips hospitals put on your finger to measure blood oxygen โ€” were significantly less accurate for patients with darker skin. They were overestimating oxygen levels in Black patients. Doctors, trusting the reading, did not administer supplemental oxygen when they should have. During the COVID-19 pandemic, when blood oxygen was a critical indicator of who needed hospital care, this inaccuracy may have contributed to worse outcomes for Black patients.

The oximeters had been developed and calibrated primarily using data from light-skinned patients. Nobody designing the device in the 1970s and 1980s set out to create a tool that would underserve Black patients. But the data used to build and validate it did not represent them โ€” and the problem went undetected for 40 years because the people most harmed were not the people running the validation studies.

The Recurring Pattern

This is the same structure as every other bias story in this course. Data collected from a non-representative group. A tool built to serve that group well. Deployment to everyone. Harm discovered later โ€” often much later โ€” when someone specifically looks for it. The AI in Google Photos had the same structure as a medical device that had existed for decades. The technology changes. The pattern does not.

For the ages-13-and-up question: the FDA cleared pulse oximeters without requiring race-stratified accuracy data. In 2022, the FDA issued a safety alert about the problem and promised new guidance. As of 2024, the regulatory framework for evaluating AI medical tools still does not uniformly require disaggregated performance data โ€” meaning a tool can be approved as accurate "on average" even if it is substantially worse for some groups. That policy gap exists right now. People working in public health and regulation are actively debating how to close it.

When "More Data" Is Not the Answer

The natural instinct when you hear "the training data didn't include enough Black faces" is: then add more Black faces. And sometimes that works. Google could have trained its image recognition on a more representative dataset. But more data is not always the solution, and understanding why matters.

Consider a hiring algorithm trained on data from a company that has never promoted women to senior roles. You could add more data โ€” but if you add data from the same company over more years, you're adding more of the same pattern. You need fundamentally different data: a different definition of what "successful hire" should mean. The problem is not quantity. It is the definition embedded in the data.

Or consider the feedback loop problem. If you are training a crime prediction model and you collect more data by sending more police to high-surveillance neighborhoods, you are not getting a more complete picture of crime โ€” you are getting a more complete picture of policing. More data collected the same way, using the same unequal systems, only entrenches the original problem faster.

The Ethical Question to Sit With

If bias enters an AI system at five different stages โ€” data collection, labeling, feature selection, optimization target, and feedback loops โ€” and fixing one stage often just moves the problem to another, is it possible for any AI system operating in an unequal society to be genuinely fair? Or is "fairness" always a tradeoff that someone has to choose, at every stage? And if so โ€” who should be making those choices, and are they currently?

Auditing: The Practice of Looking Deliberately

One response to the five-stage bias problem is auditing โ€” deliberately testing AI systems for differential performance across groups before and after deployment. Joy Buolamwini's 2018 Gender Shades study, which found facial analysis AI failing most on dark-skinned women, is one of the most influential examples. She did not hack any systems. She assembled a dataset of faces that was actually balanced by skin tone and gender, ran it through commercial APIs, and published the results. Within months, IBM, Microsoft, and Face++ had all significantly improved their systems on dark-skinned faces.

External pressure from a rigorous audit forced change that voluntary internal review had not. This is one of the central policy debates in AI right now: should AI audits be mandatory? Who should conduct them โ€” the companies themselves, independent researchers, government agencies? And what should happen when an audit finds a problem โ€” who is liable?

You now have the vocabulary to follow that debate as a participant, not a bystander. You know what an audit is testing for. You know why "it works on average" is not a sufficient answer. You know that the five stages of bias mean a company saying "our training data is representative" is only answering one-fifth of the question.

Lesson 2 Quiz

Five questions on where bias enters โ€” and why it's hard to remove.
1. When Google Photos labeled Jacky Alcine's photos as "gorillas," the company's long-term fix was to remove the labels for gorillas from the system entirely. Why does this response reveal a problem beyond the original bug?
Exactly. The delete-the-label fix is a workaround, not a solution. The underlying problem โ€” underrepresentation of dark-skinned faces in training data โ€” was not addressed. That same imbalance likely degraded accuracy for those faces in other categories and continued to affect the system in ways no one was monitoring.
The key issue is what the fix reveals about the company's approach. Deleting the category avoids the PR problem without solving the data quality problem. The bias in the training data that caused the misclassification remains, and could surface in other harmful ways.
2. A music streaming service uses an AI to recommend artists. It was trained on listening data from 2010โ€“2015. In that period, the platform had far more users from North America and Europe than from Africa or Latin America. A new listener from Nigeria finds that the recommendations are irrelevant to them. Which bias stage best explains this problem?
Right. The core problem here is representational โ€” the training data didn't include Nigerian listeners, so the model literally has no experience of their musical context. This is data collection bias: who is and isn't included in the data used to build the system.
Map this to the five stages from the lesson. The core issue is that the training data came from a specific geographic population and doesn't represent the new user. That's a data collection problem โ€” the most fundamental of the five stages.
3. What makes feedback loops particularly dangerous compared to other sources of AI bias?
Yes. Feedback loops are self-reinforcing. The predictive policing example shows why: more police sent to neighborhood A produces more arrests there, which produces more training data labeling neighborhood A as high-crime, which sends even more police there. The model appears to be "learning" when it is actually amplifying its own prior decisions. Standard accuracy metrics may look fine because the loop is internally consistent.
Think about what makes feedback loops structurally different. Unlike bias in initial training data, feedback loop bias grows as the system is used. The system's outputs become inputs โ€” and because the outputs were already biased, the inputs become increasingly biased. The problem compounds over time.
4. Joy Buolamwini's Gender Shades audit caused IBM, Microsoft, and Face++ to improve their facial analysis systems within months. What does this suggest about how AI accountability works in practice?
Exactly. The lesson frames this as a central policy debate: should external audits be mandatory? Buolamwini's work showed that companies had the technical capacity to fix the problem โ€” they just hadn't prioritized it until external scrutiny made the failure publicly visible and reputationally costly.
The lesson is careful here: the companies were not legally required to fix anything. But they did fix it โ€” rapidly โ€” after public evidence of the problem. This suggests external pressure and public accountability are powerful levers even without legal mandate. The policy question is whether to require that kind of scrutiny systematically.
5. A hospital is evaluating a new AI diagnostic tool. The vendor says it achieves 92% accuracy. You have read this lesson. What is the most important follow-up question you should ask?
This is the pulse oximeter question applied to AI. The oximeter was "accurate" on average โ€” it just wasn't accurate for some patients. An AI tool that is 98% accurate for white patients and 82% accurate for Black patients might average out to 92% and still sail through a standard accuracy review. Disaggregated performance data โ€” broken down by relevant subgroups โ€” is the critical question.
The pulse oximeter story showed exactly why aggregate accuracy is insufficient. A tool can be genuinely accurate for some patients and genuinely dangerous for others, and an overall accuracy number will obscure this. The right question is always: accurate for whom?

Lab 2 โ€” The Data Detective

You are investigating a medical AI. AXIOM has the vendor's documentation.

Your Role: Healthcare AI Reviewer

A hospital network is considering deploying an AI tool that predicts which patients are at high risk for hospital readmission within 30 days. The vendor's documentation says: "Validated on 200,000 patient records. AUC score 0.82. Reduces readmission rates by 18%." The hospital's board is impressed. You are not, yet.

AXIOM has read the full documentation. You need to identify where bias could have entered this system โ€” across the five stages from Lesson 2 โ€” and determine what information is missing before the hospital should deploy.

Tell AXIOM which of the five bias stages you think is the highest risk in this specific case โ€” readmission prediction โ€” and what question you would demand the vendor answer before you approved deployment.
AXIOM โ€” Healthcare AI Reviewer
Lab 2
I've read the vendor docs. Here's what's missing: they validated on 200,000 patients but don't specify which hospitals or regions that data came from. They report overall AUC โ€” no breakdown by race, age, or insurance type. The 18% readmission reduction is from a single-site pilot. What's your first concern โ€” and be specific about which bias stage it maps to.
Is the Robot Being Fair? ยท Lesson 3 of 4

Who Gets to Decide What's Fair?

Fairness is not a technical problem with a technical solution โ€” it is a values disagreement dressed in mathematics.
When experts disagree about what "fair" even means, who has the authority to choose โ€” and what happens to the people who didn't get a vote?

Between 2014 and 2019, a company called HireVue sold an AI-powered video interview tool to hundreds of major employers, including Unilever, Goldman Sachs, and Hilton Hotels. Candidates would record themselves answering interview questions alone in front of a camera. HireVue's algorithm would then analyze their facial movements, tone of voice, and word choices, and produce a score predicting "job fit." The company claimed its AI could predict job performance better than human reviewers. Hundreds of thousands of candidates were screened this way โ€” most of whom never spoke to a human during the initial evaluation.

In 2019, the nonprofit Electronic Privacy Information Center (EPIC) filed a complaint with the Federal Trade Commission, arguing HireVue's system was opaque, potentially biased against people with disabilities (who might have atypical facial expressions or speech patterns), and making consequential employment decisions based on pseudo-science. In January 2021, HireVue quietly dropped the facial analysis component of its tool after mounting academic criticism. The company said it was removing it "out of an abundance of caution." The facial analysis component had been its core selling point five years earlier.

Nobody ever proved exactly how many people had been rejected by an algorithm analyzing their face. The records weren't public. The methodology wasn't disclosed. The affected candidates were never notified.

The Politics Hidden Inside Definitions

Lesson 1 introduced two competing definitions of fairness โ€” calibration and error rate balance โ€” and noted that mathematically, you often can't have both. But the conflict goes deeper than math. Different definitions of fairness reflect different political values about what justice requires.

Consider three people arguing about how a college admissions AI should work:

Person A says: "The AI should be fair if it selects the students most likely to succeed academically, regardless of background." This is called individual fairness โ€” treat each person based on their own qualifications.

Person B says: "The AI should be fair if it produces an admitted class whose demographic makeup reflects the applicant pool." This is demographic parity โ€” the outcomes should be proportionally equal across groups.

Person C says: "The AI should be fair if it corrects for the fact that students from underfunded schools had fewer resources, so lower test scores mean different things for them." This is equity โ€” adjusting for historical disadvantage rather than just measuring current outcomes.

Individual fairness: Treating similar people similarly, based on their own attributes โ€” without considering group membership.
Demographic parity: Ensuring outcomes are distributed proportionally across demographic groups โ€” regardless of whether individuals within those groups were identical.
Equity: Adjusting for unequal starting conditions โ€” giving more support or credit to those who faced more obstacles, to achieve genuinely fair outcomes.

All three people have defensible positions. All three definitions produce different outcomes when applied to the same data. The choice between them is not a technical decision. It is a moral and political decision that has been delegated to engineers โ€” usually without anyone announcing that the delegation happened.

Who Actually Makes These Decisions โ€” and Who Doesn't

In most AI deployments, the people who choose which fairness definition to implement are product managers and engineers at the company building the tool. They are not elected. They are not legally required to disclose their choices. The people most affected by the tool โ€” job applicants, defendants, loan applicants, students โ€” have no seat at the table and are often not informed that a tool is being used at all.

A 2019 study by AI researchers Timnit Gebru and Emily Bender โ€” then both at Google โ€” helped create what became known as a "model card": a documentation framework where AI developers would publicly state what their model was designed to optimize, what data it was trained on, and how it performed across different demographic groups. The idea was that decisions currently hidden inside technical documentation would become publicly visible and contestable.

Google fired Gebru in December 2020 after a dispute over a research paper she co-authored โ€” a paper that, among other things, raised concerns about the risks of large language models. The circumstances of her firing became one of the most high-profile controversies in AI ethics. It illustrated, concretely, that the people raising fairness concerns inside companies face real professional consequences for doing so.

The Accountability Gap

When a human bank officer denies your loan application, you can ask why, challenge the decision, and potentially sue for discrimination. When an algorithm denies your loan application, you may receive a form letter citing "automated decision-making." In the European Union, the GDPR (General Data Protection Regulation) gives people a "right to explanation" for automated decisions affecting them. In the United States as of 2024, no equivalent federal law exists. The legal framework for algorithmic accountability is still being built โ€” and the companies building the systems have far more lawyers in that process than the people being affected by them.

This is a live policy question, not a historical one. Legislation like the Algorithmic Accountability Act has been proposed in the U.S. Congress multiple times. It has not passed. The debate is about who holds power over systems that make decisions about people โ€” and whether the people being decided about have any rights in that process.

The HireVue Question Applied More Broadly

The HireVue case is useful because it isolates a specific argument: what counts as valid evidence that an AI system is fair? HireVue claimed its tool predicted job performance. Researchers argued the claim was not backed by rigorous independent evidence. But even if it were backed by evidence โ€” even if analyzing facial micro-expressions genuinely predicted some measure of job performance โ€” there is a second question: should it?

Imagine an AI that correctly identifies that people with certain speech patterns are slightly less likely to be promoted in a given company. Should that company use that AI to screen out candidates with those patterns? The tool might be accurate by its own metrics. But it would be using historical promotion patterns โ€” which may themselves reflect bias against certain accents or communication styles โ€” as the definition of "success." Accurate tools can still be unfair if the thing they're accurately predicting is itself the product of discrimination.

The Ethical Question to Sit With

HireVue's facial analysis component affected hundreds of thousands of hiring decisions before it was removed. No individual ever received an explanation. No one was compensated. The company issued no public apology to candidates who may have been unfairly rejected. Is "we removed the feature" an adequate response when a consequential decision system harms people? What would accountability actually look like here? And who, if anyone, should have the authority to answer that question โ€” the company, a court, the government, or the people who were screened?

Why This Is Now Your Problem Too

You are growing up into a world where algorithmic systems will make consequential decisions about you: which college applications get reviewed, which health insurance plan is offered to you, which loan terms you receive, how much you pay for car insurance (which in some states is partially determined by algorithms that use zip code, education level, and occupation as proxies โ€” all of which correlate with race and income). Knowing what you now know, you can see those decisions differently.

You can ask: what fairness definition does this system use? Was I told that an algorithm was involved? Was the system validated on people like me? Who chose the optimization target? Is there a feedback loop that compounds initial disadvantages?

These are not questions most adults ask. They are not questions most journalists ask. The people who do ask them โ€” researchers like Joy Buolamwini, Timnit Gebru, and Safiya Umoja Noble, whose 2018 book Algorithms of Oppression documented how Google search results systematically degraded the image of Black women โ€” often face resistance, marginalization, and in some cases job loss for doing so.

Knowing what you know changes what you owe it to yourself to ask about every system that affects your life.

Lesson 3 Quiz

Five questions on fairness definitions, power, and accountability.
1. HireVue's facial analysis tool was used on hundreds of thousands of candidates before being removed in 2021. The company said removal was "out of an abundance of caution." What is the most significant accountability problem this situation reveals?
Exactly. The core accountability failure is that the harm was not remedied โ€” it was simply stopped going forward. Removing a feature doesn't retroactively help the people who were screened out by it. And the absence of a legal requirement to notify or compensate affected candidates means the harm is permanent and unaddressed.
The lesson is careful about what is and isn't documented. The accountability issue identified is specifically about remedy: removing a flawed tool doesn't undo the harm it caused. The people screened out received nothing, and no company or employer faced legal consequences for that.
2. Three people disagree about how a college AI should define fairness: Person A wants individual fairness, Person B wants demographic parity, Person C wants equity. They cannot all be right simultaneously. What does this disagreement actually represent?
Right. The lesson's core point in this section is that choosing a fairness definition is a political act, not a technical one. It encodes a position on what justice requires โ€” and that choice is currently being made by product managers and engineers with no mandate to represent the people affected.
The lesson explicitly states these are not misunderstandings โ€” they are defensible positions that produce different outcomes. The problem is that the choice between them is being made by technical teams without public mandate. That's a governance problem, not a math problem.
3. An AI tool accurately predicts that candidates with a particular accent are less likely to be promoted at a specific company. The company uses this to screen out applicants with that accent. The AI is statistically accurate. Is this fair?
This is the key insight from the HireVue section. Statistical accuracy does not equal fairness. If the historical outcome the AI learned to predict was itself shaped by discrimination, then accurately predicting that outcome perpetuates and locks in the discrimination. An AI can be technically accurate and morally unjust at the same time.
The lesson addresses this directly: accurate tools can be unfair if the thing they're accurately predicting is itself a product of discrimination. The question is not whether the prediction is statistically valid โ€” it's what the prediction is measuring and whether that measure is itself fair.
4. What is the significance of Timnit Gebru's firing from Google in December 2020, in the context of this lesson?
Exactly. The lesson uses Gebru's case to make a structural point: even if individual engineers and researchers care about fairness, they operate inside institutions with conflicting incentives. The accountability structures needed to make fairness concerns stick are external โ€” not internal โ€” to the companies building these systems.
The lesson is not making a blanket claim about all tech companies. It's making a structural point: the incentive systems inside companies can work against people raising fairness concerns. Gebru's case is specific evidence for that structural argument, not a claim about tech company values generally.
5. The EU's GDPR gives people a "right to explanation" for automated decisions affecting them. The U.S. has no equivalent federal law as of 2024. What is the practical consequence of this difference for someone in the U.S. who is denied a loan by an algorithm?
Right. Without a right to explanation, algorithmic discrimination is extremely difficult to identify and challenge. You can't prove a system was biased against you if you don't know what the system used to make its decision. This is the legal gap the Algorithmic Accountability Act proposals are trying to close.
Existing U.S. anti-discrimination laws require lenders to give a reason for denial, but the reasons can be generic ("credit history") rather than a full explanation of how an algorithm weighted factors. There is no equivalent of GDPR's right to a meaningful explanation of automated decision-making in U.S. federal law.

Lab 3 โ€” The Policy Architect

You are writing the rules. AXIOM will stress-test every choice you make.

Your Role: Policy Drafter

A city government has decided to use an AI tool to help allocate social services โ€” determining which families are most in need of housing assistance, job training, or childcare subsidies. The city council has asked your team to recommend a fairness policy: which fairness definition should govern the tool, what should be disclosed to families who are screened, and what appeals process should exist.

AXIOM is a council member who will challenge every recommendation you make. You need to take a position and defend it, not just list options.

Start by recommending which fairness definition โ€” individual fairness, demographic parity, or equity โ€” the city should use for this specific tool, and why that definition is the right one for allocating social services specifically.
AXIOM โ€” City Council Member
Lab 3
I've heard the pitch for all three definitions before. What I need from you is a specific recommendation for this specific use case โ€” allocating limited city resources to families in need. Not "it depends." Pick one, tell me why it's the right one for social services, and tell me what the city loses by choosing it. I'm going to challenge whatever you say.
Is the Robot Being Fair? ยท Lesson 4 of 4

Can We Actually Fix It?

Researchers have real tools for reducing algorithmic bias โ€” and real reasons to believe those tools are not enough on their own.
If the problem is partly mathematical, partly social, and partly political โ€” what would a genuine solution actually look like?

In November 2019, a programmer named David Heinemeier Hansson posted on Twitter that Apple's new credit card โ€” the Apple Card, issued in partnership with Goldman Sachs โ€” had given him a credit limit twenty times higher than the limit it gave his wife, even though they filed taxes jointly, shared assets, and his wife had a higher credit score. His post went viral. Within days, other couples reported the same pattern. Then Steve Wozniak, co-founder of Apple, said he had the same experience with his wife. The story was everywhere.

New York State's Department of Financial Services launched an investigation. Goldman Sachs said it did not use gender as a factor. The algorithm, they said, used credit history, income, and debt โ€” all apparently gender-neutral inputs. Regulators found no illegal discrimination. And yet the pattern was real and documented: women were consistently receiving lower credit limits than their male partners with equivalent or better financial profiles. The investigation concluded in 2021 with Goldman Sachs agreeing to review affected accounts โ€” but with no finding of intentional discrimination and no determination of exactly which factor caused the disparity.

The Apple Card case became one of the cleanest modern examples of a system producing gendered outcomes without using gender as an input. It illustrated, at massive public scale, that you can audit an algorithm's inputs and find nothing technically illegal โ€” and still have a system that produces discriminatory outputs.

Technical Tools for Reducing Bias

Researchers have developed real techniques for building AI systems that are more equitable. These are not hypothetical โ€” they are used in production systems today, with varying levels of success. Understanding them matters because you will encounter claims like "we've debiased our algorithm" โ€” and now you'll know what that might and might not mean.

Pre-processing: Modifying the training data before the AI learns from it. This might mean resampling โ€” collecting more data from underrepresented groups โ€” or re-weighting โ€” giving examples from minority groups more influence in training. It can also mean removing features that are proxies for protected characteristics. The limitation: as Lesson 2 showed, proxy removal is hard. Remove zip code and you still have school district. Remove school district and you still have income.

In-processing: Adding a fairness constraint directly into what the AI is trying to optimize. Instead of just "minimize errors," you optimize "minimize errors and ensure error rates are within 5% across racial groups." The limitation: this is where the Kleinberg impossibility theorem bites. You can add one fairness constraint, but adding it may violate another. You are choosing, not solving.

Post-processing: After the AI produces its scores, adjust the threshold for different groups so outcomes become more equal. For example: require a lower score to qualify as "low risk" for a group that has historically been over-scored. The limitation: this often requires using group membership explicitly, which can raise its own legal and ethical questions โ€” and opponents argue it trades one form of unfairness for another.

The Honest Assessment

Each of these techniques reduces some forms of bias by making deliberate tradeoffs. None of them makes the underlying fairness definition question go away. Pre-processing embeds choices about whose data matters more. In-processing embeds choices about which fairness constraint to prioritize. Post-processing embeds choices about which groups deserve adjusted thresholds. Technical debiasing is real โ€” and it still requires value choices that are currently being made without public input.

Structural Responses: Beyond the Algorithm

Some researchers argue that technical debiasing is a distraction โ€” that it makes systems seem more legitimate without fixing the underlying problem. The argument goes: if you live in a society with structural inequality, any tool that makes decisions using that society's data will reproduce that inequality, no matter how carefully you tune the algorithm. The fix has to be social, not technical.

This view was articulated clearly by Ruha Benjamin, a Princeton sociologist whose 2019 book Race After Technology coined the term "the New Jim Code" โ€” the idea that algorithms can replicate and reinforce racial hierarchy while wearing the legitimacy of neutral technical language. Benjamin's argument is not that algorithms are irredeemable but that technical fixes are insufficient without simultaneous changes to the social conditions that produced the biased data in the first place.

The structural responses that have been proposed include: mandatory algorithmic impact assessments before deployment (similar to environmental impact statements); ongoing public auditing of deployed systems; strong rights to explanation and appeal for people affected by automated decisions; legal liability for companies whose systems produce discriminatory outcomes; and community involvement in the design of systems that will affect those communities.

As of 2024, none of these exist as universal requirements in the U.S. The European Union's AI Act, which became law in 2024, is the most comprehensive attempt globally to create a regulatory framework for high-risk AI systems โ€” requiring transparency, human oversight, and bias testing for AI used in employment, credit, education, and criminal justice. It is the most significant policy development in AI fairness to date, and it applies to companies operating in Europe regardless of where they are based.

What the Apple Card Case Actually Teaches

Return to the Apple Card. Goldman Sachs did not use gender as a feature. Regulators found no illegal discrimination. And yet the disparity was documented and real. This is sometimes called disparate impact โ€” when a neutral-seeming rule produces unequal outcomes across groups.

U.S. law recognizes disparate impact as a form of discrimination in some contexts โ€” particularly employment and housing โ€” even without proof of intent. But the legal standard is contested, the threshold for what counts as actionable disparity is debated, and the burdens of proof are high. For credit decisions, the legal picture is less clear. The Apple Card case ended with a review of affected accounts and no penalty โ€” which means the people who received systematically lower credit limits received nothing specific in return.

The Larger Pattern You Now See

Every case in this course โ€” COMPAS, Google Photos, Amazon's hiring tool, HireVue, the pulse oximeter, the Apple Card โ€” follows the same structure: a system that makes decisions at scale, without transparent methodology, producing outcomes that harm specific groups, with limited or no mechanism for those groups to understand what happened or seek remedy. The technology changes. The accountability gap stays the same. Fixing the algorithm is necessary. It is not sufficient.

Where You Stand After This Module

You have now worked through the four lessons of this module. You know what algorithmic bias is and where it enters AI systems. You know that "fairness" is not a single technical property but a family of conflicting definitions, each encoding a different political value. You know that technical tools for reducing bias are real and limited. You know that structural responses exist but are largely not yet required by law.

Most people who use AI-powered services every day โ€” most adults, most journalists, most lawmakers โ€” do not know these things. They hear "the algorithm decided" and treat it as the end of the inquiry. You know it is the beginning of the right questions.

The people building these systems are not necessarily malicious. Many of them are working hard on exactly these problems. But they are working inside institutions with competing incentives, deploying systems at scales that make careful review difficult, and operating within legal frameworks that are still catching up to the technology. The gap between where things are and where they need to be is real โ€” and it is being debated, contested, and slowly changed by researchers, advocates, regulators, and journalists who ask the same questions you now know to ask.

Knowing what you know, you are now part of the population that can read a headline about an AI system and understand what questions are not being asked. That is not a small thing.

Lesson 4 Quiz

Five questions on technical fixes, structural solutions, and what actually changes things.
1. Goldman Sachs said the Apple Card algorithm did not use gender as an input, and regulators found no illegal discrimination โ€” yet women were consistently getting lower limits than male partners with equivalent finances. What concept best explains how this happens?
Exactly. Disparate impact means a facially neutral rule produces unequal outcomes across groups. The Apple Card algorithm likely used variables โ€” perhaps credit history length, or how credit is typically built โ€” that are correlated with gender due to historical patterns, producing a gendered outcome without explicitly incorporating gender.
The key feature of the Apple Card case is that no illegal intent was found and gender was not a direct input โ€” yet the disparity was real and documented. This is the definition of disparate impact: a neutral rule with unequal effects.
2. A company applies a post-processing fix to their loan approval AI: they lower the required score for minority applicants to qualify. A critic says: "This is unfair to majority-group applicants who score just above the old threshold but now get rejected." Is the critic raising a legitimate concern, and what does it illustrate about debiasing techniques?
Right. The lesson's "honest assessment" callout is directly relevant here. Post-processing trades one fairness problem for another. It doesn't resolve the underlying conflict between fairness definitions โ€” it makes a different political choice. The critic's concern is real, and that's what makes the choice genuinely difficult rather than technically solvable.
The lesson is careful not to resolve this โ€” it says post-processing "often requires using group membership explicitly, which can raise its own legal and ethical questions โ€” and opponents argue it trades one form of unfairness for another." The critic is raising exactly that concern. It is legitimate. That doesn't mean the fix is wrong โ€” it means there's no version of this that has no costs.
3. Ruha Benjamin coined the term "the New Jim Code" to describe what phenomenon?
Right. The "New Jim Code" is about the masking function of technical language โ€” how calling something "an algorithm" or "data-driven" makes it sound objective and neutral, even when it is producing the same outcomes as explicitly discriminatory rules. The danger is not that the code is malicious. The danger is that the neutrality claim makes the discrimination invisible and hard to challenge.
Benjamin's argument is specifically about appearance of neutrality, not deliberate design. The New Jim Code is the idea that race-neutral-seeming technical systems can produce racially unequal outcomes โ€” and the "neutral" framing makes them more powerful and harder to contest than explicitly discriminatory rules would be.
4. The EU AI Act, which became law in 2024, requires transparency, human oversight, and bias testing for AI used in employment, credit, education, and criminal justice. What does the existence of this law suggest about the adequacy of voluntary company self-regulation?
Exactly. Laws exist because voluntary behavior was inadequate. The EU AI Act represents a legislative judgment that companies, left to their own incentives, were not producing sufficiently transparent or accountable systems in high-stakes domains. Its passage is direct evidence that external accountability was deemed necessary.
If voluntary self-regulation had been adequate, there would have been no political pressure for mandatory legislation. The EU AI Act's passage โ€” and its specific requirements around bias testing and transparency โ€” is a direct policy response to the documented failures of voluntary measures.
5. After completing this module, you encounter a news headline: "Hospital System Deploys AI Triage Tool โ€” Company Says Accuracy Rate Exceeds Human Performance." What is the first question you should ask that the headline almost certainly does not answer?
This question bundles everything from the module: the fairness definition question (Lesson 1 and 3), the disaggregated validation question (Lesson 2 โ€” the pulse oximeter problem), the proxy and historical bias question (Lessons 1 and 2), and the accountability and recourse question (Lessons 3 and 4). "Accuracy rate exceeds human performance" is an aggregate claim. None of the critical questions are answered by it.
Think about what the whole module has taught you to ask. "Exceeds human performance" is an aggregate accuracy claim โ€” it says nothing about which fairness definition was used, whether performance is equal across demographic groups, what training data was used, or what patients can do if they believe the tool made a mistake. Those are the questions this module gave you.

Lab 4 โ€” The Critic's Brief

Write the argument a company doesn't want written. AXIOM will play devil's advocate.

Your Role: Investigative Journalist

You are writing a story about a major bank that deployed an AI mortgage approval system in 2022. The bank's PR team says: "Our system is fully debiased. We used pre-processing to balance the training data, added in-processing fairness constraints, and conducted a post-processing audit. We are confident the system is fair." The bank is refusing to provide disaggregated approval rate data by race or income level, citing proprietary concerns.

AXIOM is your editor. Skeptical, experienced, not impressed by vague assurances. You need to build the strongest possible critical argument โ€” using what you know from all four lessons โ€” for why "we've done all three debiasing techniques" is not the same as "the system is fair."

Lead with your strongest argument for why the bank's claim is insufficient. AXIOM will push back on every weak point.
AXIOM โ€” Investigative Editor
Lab 4
The bank's comms team sent over a three-page technical summary. They're citing the debiasing work as a complete answer. My problem: "we did all three techniques" doesn't tell us what choices were made inside each technique, what tradeoffs were accepted, or what the actual outcomes are for different applicant groups. Give me the strongest version of why their answer is insufficient โ€” and be specific. I'll tear apart anything that sounds generic.

Module 1 Test

15 questions across all four lessons. 80% to pass.
1. COMPAS was used in Broward County, Florida courts to help decide who should be released before trial. ProPublica found that its errors were asymmetric by race. Which of the following best describes why this asymmetry is especially harmful?
Correct. The consequence of a false "high risk" label is continued detention. That error concentrated on Black defendants, while false "low risk" labels โ€” which allowed potentially dangerous people to be released โ€” concentrated on white defendants. The errors are asymmetric not just statistically but in their real-world severity for Black defendants.
The lesson was explicit that nobody programmed intentional bias โ€” it emerged from historical training data. The asymmetry matters because of real-world consequences: a false high-risk label means staying in jail, which is why the error type that concentrated on Black defendants was particularly serious.
2. What does "training data" mean, and why does it matter for fairness?
Correct. Training data is the foundation from which AI systems learn patterns โ€” and if those patterns were shaped by historical inequality, the AI learns to treat that inequality as the rule.
Training data is what the AI learns from โ€” historical examples used to find patterns. This is distinct from programming rules written by hand.
3. Joy Buolamwini found that commercial facial analysis AI failed most severely for which group โ€” and why?
Correct. The Gender Shades study found error rates up to 35% for dark-skinned women versus under 1% for light-skinned men. The cause was representational imbalance in training data โ€” the systems had learned primarily from lighter-skinned faces.
The Gender Shades study found the worst performance for dark-skinned women โ€” up to 35% error rate โ€” due to training data that dramatically underrepresented dark-skinned faces.
4. The Kleinberg impossibility theorem states that when two groups have different base rates, you cannot simultaneously achieve both calibration fairness and error rate balance. What is the most important practical implication of this for AI design?
Correct. The theorem doesn't say AI scoring is impossible โ€” it says that choosing between fairness definitions is unavoidable. The problem is that this unavoidable political choice is currently being made quietly inside technical decisions, without the transparency and public input that a decision of this magnitude warrants.
The theorem establishes that a choice between fairness definitions is mathematically unavoidable โ€” not that systems shouldn't be used. The implication is about who makes that choice and whether it is made transparently.
5. Amazon's AI hiring tool was found to penalize resumes mentioning "women's" activities. The company had not programmed it to do this. What was the actual mechanism that produced this result?
Correct. The training data was the mechanism. A decade of hiring records in which men had been predominantly selected taught the AI that "successful candidate" patterns skewed male. The word "women's" appeared more often in female applicants' resumes, which the AI associated with the underrepresented group in its training set.
Historical bias in training data was the mechanism โ€” not a coding error or deliberate programming. The training data encoded a decade of human decisions, and the AI learned to replicate them.
6. A predictive policing algorithm is deployed in a city. Over five years, arrests in the targeted neighborhood increase significantly. The company says this proves the algorithm is working โ€” the neighborhood really does have high crime. What is wrong with this reasoning?
Correct. The feedback loop means the algorithm is creating the data used to validate itself. Increased arrests in the target neighborhood confirm the model's predictions โ€” but those arrests are a product of the model's deployment, not independent evidence. The model can never be proven wrong by its own outputs.
This is the feedback loop problem from Lesson 2. The algorithm's deployment changes the data it would use to evaluate its accuracy. More police โ†’ more arrests โ†’ model validated โ†’ more police. The data no longer measures independent crime rate โ€” it measures the algorithm's own activity.
7. Which of the following best describes "demographic parity" as a fairness definition?
Correct. Demographic parity focuses on outputs โ€” are the proportions right? This is distinct from individual fairness (judging each person on their own merits) and equity (adjusting for unequal starting conditions). All three can be correct in theory; in practice they produce different results and are often incompatible.
Demographic parity is specifically about the distribution of outcomes across groups โ€” whether the proportion of positive outcomes for each group reflects that group's representation. This is different from both individual fairness and equity.
8. HireVue removed its facial analysis component in January 2021 "out of an abundance of caution." Which of the following best describes why this response is insufficient from an accountability standpoint?
Correct. Accountability requires remedy, not just cessation. Removing a harmful feature stops future harm but does nothing for past harm. The people screened out by an invalid tool received no acknowledgment of what may have happened to them.
The core accountability failure is the absence of remedy for past harm. Stopping a harmful practice going forward is necessary โ€” but it is not the same as acknowledging or correcting harm that already occurred.
9. Pulse oximeters were found in 2020 to overestimate oxygen levels in patients with darker skin โ€” a bias that had gone undetected for roughly 40 years. What does this reveal about validation processes for medical technology?
Correct. The oximeter case shows that the same structural problem โ€” non-representative validation data โ€” produces the same structural outcome in any technology: good average performance masking significantly worse performance for underrepresented groups. This is not specific to AI.
The pulse oximeter case shows that non-representative validation populations produce tools that perform well on average but have hidden failures for underrepresented groups. This pattern is not specific to AI โ€” it appears wherever validation is not stratified by relevant demographic characteristics.
10. Timnit Gebru and colleagues proposed "model cards" โ€” documents requiring AI developers to publicly state what their model optimizes, what it was trained on, and how it performs across demographic groups. What problem were model cards designed to solve?
Correct. Model cards are an accountability mechanism โ€” a transparency requirement that makes the choices inside AI systems visible to external scrutiny. Without knowing what was optimized and how performance varies across groups, holding companies accountable for their systems' outcomes is nearly impossible.
Model cards are an accountability and transparency tool โ€” making the choices inside AI systems visible to external scrutiny, not providing legal protection or replacing audits.
11. Ruha Benjamin's "New Jim Code" concept argues that algorithmic bias is dangerous not just because it produces unequal outcomes, but because of an additional property. What is that property?
Correct. The New Jim Code concept is specifically about the legitimating function of technical language. Discrimination embedded in code is harder to see and challenge than explicit discrimination, because the word "algorithm" signals objectivity. This is the additional danger โ€” not just that bias exists, but that the technical frame makes it invisible.
Benjamin's argument focuses on the masking function โ€” how technical and neutral-seeming language makes algorithmic discrimination harder to see and challenge than explicit discrimination. The "code" in "New Jim Code" is the technical-neutral framing that provides cover.
12. The Apple Card case ended with Goldman Sachs agreeing to review affected accounts โ€” but with no finding of intentional discrimination and no legal penalty. What structural problem does this outcome illustrate?
Correct. The Apple Card case shows the legal gap: a documented, real, gender-correlated disparity produced by a neutral-seeming algorithm that used no explicit gender data โ€” and under current U.S. credit law, that combination is extremely difficult to turn into enforceable accountability.
The Apple Card case illustrates the limits of existing law for disparate impact in credit decisions. A documented disparity with no finding of intentional discrimination produced minimal accountability โ€” which is exactly the gap the lesson describes in the legal framework.
13. In-processing debiasing involves adding a fairness constraint to what the AI is trying to optimize. What is its primary limitation?
Correct. In-processing is limited by the same mathematical constraint identified in Lesson 1 โ€” you cannot satisfy all fairness definitions simultaneously. Adding a constraint chooses which one to satisfy, which means simultaneously choosing which one to sacrifice.
In-processing hits the same mathematical wall as the COMPAS fairness definitions debate. Satisfying one fairness constraint in the optimization target may violate another. You are making a tradeoff, not achieving universal fairness.
14. You are reviewing a loan approval AI. The company says: "We used pre-processing to balance our training data, removed race as a feature, and validated with 500,000 records." Which follow-up question from this module is most critical?
Correct. Removing race while retaining proxy variables is not debiasing โ€” it is the proxy problem in action. And validating on 500,000 records is only informative if those validation results are broken down by racial group. Aggregate validation statistics hide the disparate impact that the Apple Card case illustrated.
The critical question combines the proxy problem (Lesson 2) with the disaggregated validation question (also Lesson 2). Removing race while keeping zip code and credit history doesn't solve the proxy problem โ€” and aggregate accuracy on 500,000 records doesn't tell you anything about differential performance across groups.
15. Across all four lessons, every case โ€” COMPAS, Google Photos, Amazon's hiring tool, HireVue, the pulse oximeter, the Apple Card โ€” shares one structural feature. What is it?
Correct. This is the pattern the final lesson names explicitly โ€” the accountability gap that persists across technologies and domains: consequential decisions, opaque methodology, group-specific harm, and inadequate remedy. Recognizing this structure lets you identify it in systems you haven't studied yet.
The lesson synthesizes the common structure across all cases: scale plus opacity plus group-specific harm plus absent accountability. That pattern does not depend on intention, or on a specific country, or on whether technical fixes were eventually applied.