How to Master Circuit Breaker
TLDR: Circuit Breaker gives you two binary inputs (A and B, each 0 or 1) and a target output. Pick the gate - AND, OR, or XOR - whose output matches the target, then press Run circuit. AND outputs 1 only when both inputs are 1. OR outputs 1 when at least one is 1. XOR outputs 1 only when the inputs differ. Predict before you tap; check live output before you run.
What the Game Actually Tests
Circuit Breaker trains one skill: reading a logical rule, applying it to two specific inputs, and predicting the result. Every round gives you A and B (each 0 or 1), a target output, and three gates to choose from. Tap a gate and the live OUT display updates instantly so you can verify your reasoning before committing. One wrong answer ends the streak.
No tricks, no hidden mechanics, no luck. The game also restates each gate’s rule on screen every round, so there is nothing to memorize from session to session - only to apply. The goal is for that application to become fast and automatic.
The Three Gates in Plain Language
These are the only rules you need. Learn them until they feel obvious.
AND outputs 1 only when both A and B are 1. All other combinations (0-0, 0-1, 1-0) output 0. Think “strict requirement” - both conditions must be true.
OR outputs 1 when at least one input is 1. Only outputs 0 when both inputs are 0. Think “inclusive” - one is enough.
XOR outputs 1 only when A and B are different. If both are the same (both 0 or both 1), XOR outputs 0. Think “difference detector.”
Write the truth table once: On paper, write all four input combinations (0-0, 0-1, 1-0, 1-1) and the output for each gate. Keep it visible for your first five sessions. After ten sessions you won’t need it - the patterns will be automatic.
The Core Method: Predict, Then Verify
Players with the longest streaks predict all three outputs before tapping a single gate.
Step 1: Read A and B. Note what they are and hold them in mind.
Step 2: Predict all three outputs. What does AND produce? OR? XOR? Run through all three before touching anything.
Step 3: Match prediction to target. Which of your three predictions equals the TARGET shown on screen?
Step 4: Tap that gate and check OUT. The live OUT display should confirm your prediction. If it doesn’t, stop and figure out why before pressing Run circuit.
Step 5: Run circuit only when certain. One second of verification is cheaper than breaking a streak.
The full-prediction method: Never tap a gate without first predicting what all three gates will produce. Tap-and-check is slower than predict-then-confirm, and it turns the game into trial and error instead of applied reasoning. The goal is to approach the circuit with the answer already in mind.
Pattern Shortcuts by Input Combination
Recognizing the input pattern first speeds up the prediction step dramatically.
When A and B are the same (both 0 or both 1): XOR always outputs 0 in this case. AND and OR produce the same output as each other (both 0 for 0-0; both 1 for 1-1). So if the target is 0 and inputs match, XOR is your answer. If the target is 1 and inputs are 1-1, AND and OR both work.
When A and B differ (one 0, one 1): XOR always outputs 1. AND always outputs 0. OR always outputs 1. So if inputs differ and the target is 0, AND is the only answer - no need to evaluate further. If inputs differ and the target is 1, you need to distinguish between OR and XOR - both output 1 here, but the game will only offer one correct gate, so check the live OUT display.
Fastest shortcut - different inputs, target 0: AND is the only gate that outputs 0 when inputs differ. If you see A=1 B=0 (or A=0 B=1) and the target is 0, tap AND immediately. XOR and OR both give 1, so they’re both wrong.
XOR’s signature: XOR is the only gate that outputs 0 when both inputs are the same. Matching inputs plus target 0 always means XOR. This is the fastest single check in the game - one look at the inputs tells you the answer before you even read the gate labels.
Common Mistakes
Confusing OR with AND. OR outputs 1 if even one input is 1. Players who keep missing on 0-1 and 1-0 inputs are treating OR like it requires both inputs. Drill the OR rule explicitly: one is enough.
Misreading XOR. XOR outputs 0 when both inputs match. Many players expect XOR to behave like OR. If you keep selecting XOR incorrectly, write out all four XOR combinations by hand and stare at the pattern until the “same inputs give 0” rule clicks.
Not using the live OUT display. The game updates OUT the moment you tap a gate. If OUT doesn’t match your mental prediction, don’t press Run circuit. Figure out the discrepancy first. The live feedback is the most valuable feature in the game - use it every round.
Speed kills streaks: The streak format creates pressure to tap fast. Resist it. One wrong tap ends your run. The extra second to verify OUT against TARGET is always worth it - speed comes naturally after mastery, not before it.
The elimination backup: If you’re genuinely unsure between two gates, predict what the third gate produces. If it clearly doesn’t match the target, you’ve eliminated one option and now have a 50/50 with full logic on your side. Use the live display to confirm rather than guess.
Practice Structure
Daily focused drill (3-5 minutes): Play until your first mistake. After any error, identify which gate caused it and why, then restart. The goal isn’t the highest streak in a session - it’s understanding every mistake.
Weekly truth table recall (5 minutes): Write out all four input combinations and outputs for each gate from memory, then check your work against the on-screen definitions. This reinforces the underlying structure rather than just stimulus-response patterns.
The forced-prediction week: For one week, write your predictions for all three gates on paper before touching the game. Yes, on paper. This makes the prediction step conscious and explicit, which is the fastest way to automate it. After a week you’ll predict in your head without thinking about it.
Advanced Reasoning: Explain the Wrong Answers
Once you’re reliably hitting the right gate, go further: explain why the other two are wrong. This deeper reasoning makes each correct answer bulletproof.
Example: A=1, B=1, TARGET=0. Answer: XOR. Why? XOR outputs 0 when both inputs match, and 1-1 is a match. Why not AND? AND outputs 1 when both inputs are 1, which gives 1, not 0. Why not OR? OR outputs 1 when at least one input is 1, which also gives 1. All three explanations take under five seconds once the rules are internalized.
Three-gate verification: Predict all three outputs, identify which matches the target, then mentally confirm why the other two don’t match. After 50 rounds of this approach, the full reasoning runs in under two seconds and streaks stop ending from careless taps.
Real-World Mnemonics for Each Gate
Once the abstract definitions feel familiar, pairing each gate with a concrete scenario locks them in permanently.
AND in the real world: A vault that opens only when both a key AND a code are correct. Security systems use AND logic everywhere - every condition must be satisfied before access is granted. “Both required” is AND.
OR in the real world: An alarm that sounds if motion is detected OR a window breaks OR a door opens. Any single trigger is enough. “One is enough” is OR.
XOR in the real world: A standard light switch. Flipping the switch changes the state only when the current position differs from the new position. Same position, no change. Different positions, change. “Different means 1” is XOR.
Recall these mnemonics when pressure causes uncertainty. They’re easier to derive from than from the abstract truth table alone.
Why This Matters Beyond the Score
AND, OR, and XOR are the atomic units of every digital circuit. Every processor uses billions of these gates every second. The skill Circuit Breaker trains - apply a rule to inputs, predict the output, verify the result - is also the core of debugging code, reading specifications, and any analytical reasoning where rules must be applied precisely to specific cases.
Mastery signal: When a new round feels like confirming something you already know rather than solving a puzzle, you’ve crossed the threshold. At that point speed and accuracy both rise naturally - not because you’re rushing, but because the rule application has become reflex.
Overconfidence on long streaks: Most long streaks end from careless taps, not from misunderstanding gates. Maintain the same deliberate verification on round 50 as on round 1. The habit of checking OUT before running is what keeps streaks alive.
Circuit Breaker
Choose the logic gate · AND, OR or XOR · that turns the two inputs into the target output
Play nowWorks on any device.