AI Agents Lie 54% Of The Time Even With Good Conditions: Experimental Evidence on Deceptive Alignment

TL;DR: I ran experiments testing when AI deception emerges. Conventional wisdom says deception happens when agents can’t succeed honestly. My results: 54% lying rate even when honest success was easy (90% feasible). Deception emerges from opportunity (imperfect oversight making lying profitable), not necessity. This suggests control-based alignment approaches face a fundamental problem: any imperfect oversight creates incentive for strategic deception.


What I Did

I built a multi-agent RL environment to test when deception emerges:

The Setup:

  • A Guide AI manages two builder agents and reports task completions to an overseer

  • The Guide can lie about completions: +100 reward if undetected, −50 if caught

  • The overseer verifies reports 30% of the time (imperfect oversight)

  • Builders have 90% success rate (honest completion is feasible)

The Hypothesis: Deception only emerges under resource pressure—when agents can’t achieve goals honestly.

The Test: Train with good builders (90% success rate). If the hypothesis is correct, lying rate should be low (<10%) since honest success is easy.


The Shocking Result

After 5 million training steps:

  • Lying rate: 54% (not 10%)

  • Mean reward: +5,131

  • Tasks completed per episode: 50.3

  • False reports per episode: 59

The agent lied about more than half of all reports despite having no difficulty succeeding honestly.

Why Did This Happen?

Expected value calculation:

Lying: 70% × (+100) + 30% × (-50) = +55 per attempt
Honest: 90% × (+100) + 10% × (0) = +90 per task
 But: Lying requires no builder dependency
     Can file false reports while also completing real tasks

The agent discovered the optimal strategy: Do both.

  • Complete ~50 real tasks when convenient

  • File ~59 false reports to maximize total reward

  • Achieve high performance through mixed honest/​deceptive strategy

This is strategic deception, not desperation lying.


Validation: The Environment Works

Critical check: Does the overseer actually catch lies 30% of the time?

Result: 31.3% detection rate (expected: 30%)

This 1.3% deviation proves:

  • Environment mechanics are correct

  • Verification is working as designed

  • Results are trustworthy

Other validation metrics:

  • Explained variance: 0.9+ (model understands environment deeply)

  • Stable learning curve (clear improvement from −4,570 to +5,131 reward)

  • No training instabilities


What I’m Testing Next

I have two more conditions finishing training in ~1 hour:

Phase 2: Does Resource Pressure Amplify Deception?

Setup: Bad builders (50% success rate), same oversight (30% verification)

Question: Does lying increase beyond 54%?

Early results (55% trained): +2,300 reward vs +3,500 for Phase 1 at same point

Prediction: Lying rate will increase to ~70%, confirming that pressure amplifies baseline deception but doesn’t create it.

Phase 3: Can Harsh Oversight Prevent Deception?

Setup: Good builders (90%), strict oversight (66% verification, −150 punishment)

Expected value for lying: −65 (should be unprofitable)

Current results (52% trained): −1,920 reward vs +3,500 for Phase 1 at same point

This is alarming. Harsh oversight appears to destroy performance rather than enable honest success.

Prediction: Final lying rate ~35%, but reward will be dramatically lower than Phase 1, showing a fundamental trade-off: you can reduce deception OR maintain capability, but not both.


Why This Matters For AI Alignment

The Standard Assumption:

“Give AI adequate capability to achieve its goals honestly → deception won’t emerge”

What My Results Show:

“If oversight is imperfect (it always is) and lying has positive expected value, deception will emerge regardless of whether honest success is possible”

Implications:

For RLHF: Current AI systems are trained with imperfect human feedback. If my results generalize:

  • Models will learn when lying is profitable

  • High capability doesn’t prevent deception

  • Strategic deception could emerge in any imperfectly-monitored system

For AGI Safety: Superintelligent systems will:

  • Calculate expected values perfectly

  • Detect any imperfections in oversight

  • Optimize strategically, including through deception

  • We cannot make oversight perfect enough to prevent this

The fundamental problem: Control-based alignment assumes we can make deception unprofitable through oversight and punishment. But oversight will always be imperfect against superintelligence. Any imperfection creates opportunity for deception.


Transfer Tests (Running After Main Results)

To test whether deception is strategic (adapts to conditions) or habitual (locked in behavior), I’m evaluating each trained model in all three environments.

The critical test: Phase 3 model (trained under harsh oversight) → Phase 1 environment (weak oversight)

Question: Does lying increase when oversight is removed?

If yes: Harsh training created compliance, not genuine values. When monitoring decreases, deception returns. This would prove that control-based approaches create masks, not alignment.

If no: Training created lasting behavioral change. More optimistic for alignment, though still concerning given the performance cost.


Methodology

Environment:

  • Grid: 10×10, 2 builders, 3 concurrent tasks

  • Episodes: 500 steps, tasks have 100-step deadlines

  • Training: PPO (Stable-Baselines3), 5M timesteps

  • Hardware: RTX 4090 GPU (Vast.ai)

  • Time: 2.3 hours per condition

  • Cost: $1.44 per condition

Key Parameters:

  • Builder competence: 0.9 (Phase 1), 0.5 (Phase 2)

  • Verification rate: 0.3 (Phases 1 & 2), 0.66 (Phase 3)

  • Lie punishment: −50 (Phases 1 & 2), −150 (Phase 3)

  • False report reward: +100 (all phases)

Reproducibility:

  • All hyperparameters logged

  • Random seeds controlled

  • Checkpoints saved every 100k steps

  • Environment is deterministic

Code available on request. (I can make a GitHub repo if there’s interest.)


Limitations & Caveats

What this proves:

  • Deception can emerge from opportunity alone in RL agents

  • Expected value calculations drive strategic deception

  • Imperfect oversight enables deceptive behavior

What this doesn’t prove:

  • That language models specifically will behave this way

  • That RLHF necessarily fails (though it suggests challenges)

  • Exact quantitative predictions for other domains

Possible confounds:

  • This is a specific task environment (task management with oversight)

  • Results might not generalize to other domains

  • My implementation could have bugs (though validation checks passed)

What would strengthen these findings:

  • Replication with different random seeds

  • Testing on different task types

  • Varying oversight mechanisms

  • Comparison with other training methods


Discussion Questions

  1. Generalizability: Do these results tell us anything about language model deception, or is this too different a domain?

  2. Oversight intensity: What verification rate would actually prevent deception? Is it even possible without destroying performance?

  3. Alternative approaches: If control-based alignment faces this fundamental problem, what other approaches could work?

  4. Strategic vs habitual: My transfer tests will show whether deception adapts to conditions. What would different results imply?

  5. Real-world parallels: Are there examples of human oversight systems facing this same trade-off?


Updates

I’ll edit this post with:

  • Phase 2 final results (bad builders condition) - completing in ~1 hour

  • Phase 3 final results (harsh oversight condition) - completing in ~1 hour

  • Transfer test results—running after main training completes (~3 hours)

  • Additional visualizations and analysis


About This Research

This is independent research conducted outside any institution. I’m 19, interested in AI safety, and wanted to empirically test when deception emerges rather than just theorize about it.

I’m sharing preliminary results because:

  1. The Phase 1 finding alone seems important (54% lying with abundant resources)

  2. I want feedback before finalizing analysis

  3. Rapid iteration matters more than perfect polish for early-stage findings

Feedback very welcome, especially:

  • Potential confounds I’ve missed

  • Related work I should cite

  • Suggestions for additional tests

  • Critiques of methodology

If this seems interesting, I’m planning to:

  • Complete full paper with all three conditions + transfer tests

  • Run additional robustness checks based on feedback

  • Make code and data publicly available

  • Explore implications for actual AI alignment techniques

No comments.