Apps

🧪 This platform is in early beta. Features may change and you might encounter bugs. We appreciate your patience!

← Back to Library
blog.category.aspects Mar 30, 2026 2 min read

Algorithmic Bias — When Logic Wears a Disguise

Algorithmic bias is a technical statistical problem that arises when machine learning models encode and perpetuate historical biases present in training data. This occurs through biased training data, proxy variables that correlate with protected characteristics, optimization criteria that weight majority performance, and feedback loops that amplify initial biases over time.

Also known as: ML model bias, Statistical discrimination

How It Works

Data reflects historical social structures. When those structures encode discrimination, models optimized to fit historical data will replicate the discrimination. The mathematical appearance of objectivity masks the normative choices embedded in training data.

A Classic Example

A recidivism prediction algorithm (COMPAS) was trained on historical arrest data. Because minority defendants were historically arrested at higher rates due to discriminatory policing, the algorithm assigned higher risk scores to minority defendants with similar actual recidivism rates as white defendants.

More Examples

A resume-screening algorithm trained on a decade of successful hires at a tech company learns to downrank candidates who attended all-women's colleges, because historical hiring patterns reflect past gender discrimination rather than candidate quality. The algorithm encodes and automates that discrimination at scale.
A bank's loan approval model trained on historical lending data systematically assigns lower credit scores to applicants from certain zip codes. Because those zip codes were historically redlined and underserved, the model treats the resulting lack of credit history as a risk signal — perpetuating exclusion under the appearance of objective data-driven decision-making.

Where You See This in the Wild

Facial recognition systems trained predominantly on light-skinned faces show dramatically higher error rates for darker-skinned women (MIT Media Lab study, Buolamwini & Gebru, 2018).

How to Spot and Counter It

Audit training data for representativeness. Measure model performance separately for demographic subgroups. Apply fairness constraints during optimization. Use causal models that distinguish legitimate from illegitimate sources of variation.

The Takeaway

The Algorithmic Bias is one of those reasoning errors that sounds perfectly logical at first glance. That's what makes it dangerous — it wears the costume of valid reasoning while smuggling in a broken conclusion. The best defense? Slow down and ask: does this conclusion actually follow from these premises, or am I just connecting dots that happen to be near each other?

Next time someone presents you with an argument that "just makes sense," check the structure. The feeling of logic is not the same as logic itself.

Related Articles