🎮 Black Ops 6 Zombies · Terminus Map · Beamsmasher

Terminus Calculator

Solve the Terminus Zombies math puzzle in seconds. Select your X, Y, Z symbol values — get the exact 3-digit code for the Research Office terminal. No math needed. Save your 5,000 Essence.

🗓 Last Updated:
🔬 Research Office Code Solver
Select the numeric value shown for each variable on the left whiteboard in the Research Office
X Variable X
Y Variable Y
Z Variable Z
Or enter values directly:
🔢
Select X, Y, and Z values above — your code will appear instantly

Symbol Value Reference Chart

The left whiteboard in the Research Office shows this exact mapping. Find the symbol on your laptop screen, match it here to get the number, then select it above. The symbols are fixed every game — only the X/Y/Z assignments change.

Symbol Visual Value In-game description
Symbol 1 0 Four-pointed diamond / cross shape — no bars
Symbol 2 10 Hollow hexagon — single outer ring only
Symbol 3 11 Circle with crosshair — circle + inner plus
Symbol 4 20 Triangle with inner subdivisions — split triangle
Symbol 5 21 Rotated diamond / square on point — tilted square
Symbol 6 22 Filled hexagon — solid six-sided shape

The Three Equations Explained

The right whiteboard in the Research Office shows these three equations. They look intimidating under zombie pressure, but each is a simple two-step calculation. Here's what each one means and why it works.

Equation 1
Code₁ = (2 × X) + 11

Double your X value, then add 11. Since X can be 0, 10, 11, 20, 21, or 22, Code 1 will always be one of: 11, 31, 33, 51, 53, or 55. This is pure linear algebra — multiply then add a constant.

Example: X = 20 → (2 × 20) + 11 = 40 + 11 = 51
Equation 2
Code₂ = (2Z + Y) − 5

Double Z, add Y, then subtract 5. This combines two variables, which is where mistakes happen in-game — players sometimes add Z + Y without doubling Z first. Remember: double Z first, then add Y, then subtract 5.

Example: Z = 11, Y = 10 → (2×11 + 10) − 5 = (22 + 10) − 5 = 32 − 5 = 27
Equation 3
Code₃ = |X − Y − Z|

Subtract both Y and Z from X, then take the absolute value — meaning if the result is negative, drop the minus sign. This is the only equation that can produce a negative intermediate result, which is why the absolute value bars are there. Many players get this wrong by forgetting to drop the negative.

Example: X=10, Y=20, Z=11 → 10 − 20 − 11 = −21 → |−21| = 21

These equations always appear in the same order on the whiteboard, and the structure never changes between games. What changes is only the X, Y, Z values assigned by the laptops each run. That predictability is what makes a calculator like this work every time.

If you enjoy number puzzles like this, the XOR Calculator shows a similar pattern of bitwise logic operations used in cryptography and game code — worth exploring if the math behind Terminus interests you.

Where to Find the 3 Laptops on Terminus

Before you can use this calculator, you need to find and activate the three laptops scattered around Terminus Island. Each one displays a symbol on screen with a letter label telling you whether it's X, Y, or Z. You must note both the symbol and the letter.

1
Communications Building

Outside the Communications Building by the railings and metal fence. This is usually the easiest to reach — close to the main spawn area. The laptop sits on or near a ledge by the building exterior.

2
Quick Revive Area

Near the Quick Revive machine location. The laptop is positioned close to the perk machine, often on a table or ledge. This area typically has moderate zombie traffic — clear the immediate area before stopping to read the symbol.

3
Sea Tower Docks

At the Sea Tower dock area. This is usually the furthest from spawn. The laptop is found near the water's edge in the dock area. In co-op, send one player here while others manage zombies at the other locations.

💡
Pro tip for co-op: Split up — send one player to each laptop simultaneously. Meet at the Research Office after. Solo players can pause after activating each laptop to note the symbol before zombies overwhelm you. Take a screenshot if playing on PC or console.

Where This Fits in the Beamsmasher Easter Egg

The math puzzle is one step in the full quest to craft the DRI-11 Beamsmasher Wonder Weapon for free on Terminus. Here's the complete sequence so you know exactly where the code step sits:

Pick up the Multiphasic Resonator

Collect this item from an island after progressing through early Easter Egg steps. Carry it to the machine in the Research Office and plug it in.

Find 3 laptops → Solve the equation → Enter code ← YOU ARE HERE

Activate the three laptops around the island to find your X, Y, Z symbols. Use this calculator to get your 3-digit code. Enter it at the Research Office terminal.

3
Wait for Janus P.A. confirmation

After entering the correct code, wait until the next round. You'll hear: "Multiphasic Resonator calibrated. Target located. Loading coordinates." This reveals the island location for the next step.

4
Follow the orb sequence

Locate and follow the glowing orb to new islands. Pick up the item after completing each orb challenge. Do this twice — the orb changes color and moves after the first completion.

5
Craft the DRI-11 Beamsmasher

Return to the Research Office workbench and craft the Beamsmasher Wonder Weapon. Take it to the water cave, activate the tentacle trap, and collect the hard drive that drops.

6
Deliver hard drive to Dr. Peck

Take the hard drive to the beginning of the level and give it to Dr. Peck to complete this phase of the main Easter Egg quest.

The math step is the bottleneck for most players — it requires stopping in an active zombie round to solve algebra. That's why saving the code here before your match (or bookmarking this page on your phone) is the most efficient approach.

The Math Behind the Terminus Puzzle

The Terminus equations are straightforward algebra — but they're deliberately designed to feel harder under pressure. Understanding the math structure means you can solve it manually in seconds if you ever need to without a calculator.

Equation 1: Code₁ = 2X + 11

This is a linear function y = mx + b with m=2 and b=11. Since X is always one of six values (0, 10, 11, 20, 21, 22), Code 1 can only ever be 11, 31, 33, 51, 53, or 55. You can memorize this lookup table in under a minute.

Equation 2: Code₂ = 2Z + Y − 5

A multivariate linear expression. The range of Code 2 depends on both Z and Y — minimum is 2(0)+0−5 = −5, maximum is 2(22)+22−5 = 61. Most combinations fall in the 0–60 range. The most common error here is forgetting to double Z — don't just add Z + Y.

Equation 3: Code₃ = |X − Y − Z|

This introduces absolute value, a concept from real analysis that simply means "distance from zero on a number line." A negative result just means Y+Z is larger than X — the absolute value removes the direction and gives the magnitude. The game designers included this to force players to understand one non-trivial math concept. Understanding that |−n| = n is all you need.

If you want to dig deeper into the type of bitwise and logical operations that game engines use for puzzle generation, the Number Base Converter covers binary and hexadecimal systems that underlie most game code — and the XOR Calculator shows how exclusive-or operations work, a common technique in game cryptography and code generation.

Complete Terminus Code Reference Table

For the most common X, Y, Z combinations, here's a pre-solved lookup table. Find your row by X value, then scan for your Y and Z combination.

XYZCode 1Code 2Code 3Full Code

Table shows all 216 combinations (6 values × 6 values × 6 values). Use the search above to jump to your combination.

Frequently Asked Questions

The code I entered didn't work — what went wrong?

Three common mistakes: (1) You read the wrong symbol from the whiteboard mapping — double-check each symbol against the reference chart above, paying attention to similar-looking shapes. (2) You mixed up which letter (X, Y, or Z) was on which laptop — the letter is shown next to the symbol on the laptop screen. (3) You applied the absolute value step incorrectly — if Code 3 came out negative, drop the minus sign. If you've verified all three, try re-activating the laptops to confirm the symbols haven't been misread.

Can I use this calculator before starting my match?

You can bookmark it and have it ready, but you can't pre-calculate the code before the match because the X/Y/Z symbol assignments are randomized each game. You need to find the laptops first. What you can do: bookmark this page on your phone, then pause the game (solo) or have a teammate hold zombies while you quickly enter the values and get the code.

Is the symbol-to-number mapping the same every game?

Yes. The six symbols always map to the same six values (0, 10, 11, 20, 21, 22) on the left whiteboard in the Research Office. The mapping is fixed. What's random each game is which symbol is assigned to X, Y, and Z on the laptops around the island. That's the variable part — the equations and symbol values never change.

What does the absolute value symbol | | mean?

The vertical bars in |X − Y − Z| mean "absolute value" — the distance of the result from zero, always positive. If the subtraction gives you a negative number, just remove the minus sign. Example: |−15| = 15. If it's already positive or zero, nothing changes: |15| = 15, |0| = 0. This calculator handles it automatically, but knowing the rule lets you verify results mentally.

What's the maximum and minimum possible code for each equation?

Code 1 (2X+11): minimum = 11 (X=0), maximum = 55 (X=22). Code 2 (2Z+Y−5): minimum = −5 (Z=0, Y=0), maximum = 61 (Z=22, Y=22). Code 3 (|X−Y−Z|): minimum = 0 (when X=Y+Z exactly), maximum = 44 (X=0, Y=22, Z=22 → |0−22−22|=44). Knowing these ranges helps you sanity-check your results — if you get a number outside these ranges, something was entered wrong.

Does the Beamsmasher Easter Egg work in all game modes?

The full Beamsmasher Easter Egg is available in both solo and co-op play on Terminus. The math puzzle step works identically regardless of party size. In co-op, the same code applies for the entire team — one player enters it and it progresses for everyone. The only difference is that in co-op, coordinating laptop activation across the map simultaneously speeds up this step significantly.

Why should I bother solving it instead of paying 5,000 Essence?

5,000 Essence is a significant early-game cost. That's roughly the price of a Perk-a-Cola or a Pack-a-Punch tier upgrade — resources that directly improve your survival odds. Solving the math puzzle with this calculator takes about 30 seconds and saves resources you'd rather spend elsewhere. Over multiple runs, the cumulative savings add up. The puzzle also only needs solving once per match, not repeatedly.

Are there other math puzzles like this in Black Ops 6?

Terminus has become one of the more iconic math-based Easter Egg steps in recent Zombies history. Similar equation-based puzzles have appeared in other Treyarch Zombies maps over the years, often in the context of unlocking Wonder Weapons or progressing main Easter Eggs. The combination of symbol-decoding, algebra, and time pressure under active zombie rounds is a signature design element of Treyarch's Easter Egg philosophy.

📝 Note: This is a fan-made calculator for educational and gaming assistance purposes. CalcMora is not affiliated with Activision, Treyarch, or Call of Duty. All game content, symbols, and map names are property of their respective owners. This tool is based on publicly documented in-game mechanics from the Terminus map in Black Ops 6 Zombies (2024).