Zombies Terminus Calculator

Terminus Math Research Solver

Enter the numerical values found on the three terminal screens in the Bio-Lab (X, Y, and Z) to instantly calculate the three-part security code needed for the Research Office computer.

PART 1
PART 2
PART 3

How to Solve the Terminus Math Puzzle in BO6 Zombies

The Terminus "Mathematical Research" puzzle is a critical step for players looking to complete the main Easter Egg quest or unlock high-tier rewards. This puzzle requires you to locate three specific variables (X, Y, and Z) hidden around the Bio-Lab and input them into a series of algebraic formulas to receive a three-digit code.

Step 1: Locate the Symbol Values

Navigate to the Bio-Lab area. You will find three computer screens/whiteboards, each displaying a unique symbol and an associated number. Note these down as:

  • X: The value from the first station.
  • Y: The value from the second station.
  • Z: The value from the third station.

Step 2: The Formulas Used

The Terminus calculator uses the specific in-game logic found on the research notes in the office:

  1. Code Part 1: (2 * X) + 11
  2. Code Part 2: (2 * Z + Y) – 5
  3. Code Part 3: Absolute Value of |(Y + Z) – X|

Example Calculation

If your values are X=10, Y=5, and Z=12:

  • Part 1: (2 * 10) + 11 = 31
  • Part 2: (2 * 12 + 5) – 5 = 24
  • Part 3: |(5 + 12) – 10| = 7
  • Final Code: 31 – 24 – 07
function calculateTerminusCode() { var x = parseFloat(document.getElementById('valX').value); var y = parseFloat(document.getElementById('valY').value); var z = parseFloat(document.getElementById('valZ').value); if (isNaN(x) || isNaN(y) || isNaN(z)) { alert("Please enter valid numbers for X, Y, and Z variables found in the Bio-Lab."); return; } // Terminus Puzzle Logic // Formula 1: 2X + 11 var part1 = (2 * x) + 11; // Formula 2: (2Z + Y) – 5 var part2 = (2 * z + y) – 5; // Formula 3: |(Y + Z) – X| var part3 = Math.abs((y + z) – x); // Update Display document.getElementById('res1').innerText = part1; document.getElementById('res2').innerText = part2; document.getElementById('res3').innerText = (part3 < 10 ? '0' + part3 : part3); document.getElementById('resultArea').style.display = 'block'; }

Leave a Reply

Your email address will not be published. Required fields are marked *