ACAS X, the Collision Avoidance Brain That Replaced a Rulebook With a Cost Table, and the Slow Fight to Retire TCAS
ACAS X is the FAA's next-generation collision avoidance system, replacing TCAS's hand-written rulebook with an optimized cost table.
ACAS X is the next-generation airborne collision avoidance system developed by the FAA and MIT Lincoln Laboratory to eventually replace TCAS, the system flying in nearly every airliner today. Instead of relying on thousands of hand-written if-then rules, ACAS X uses a massive precomputed lookup table generated by optimizing millions of simulated encounters against real-world traffic. The result catches dangerous encounters at least as well as TCAS while firing far fewer nuisance alerts.
What Is TCAS and Why Does It Exist?
The system in nearly every airliner and business jet today is the Traffic Alert and Collision Avoidance System, or TCAS. It wasn’t born in a lab dreaming about the future. It came from wreckage.
In 1978, a Pacific Southwest Airlines Boeing 727 collided with a small Cessna over San Diego. In 1986, a McDonnell Douglas DC-9 and a Piper collided over Cerritos, California. People on the ground died in both accidents. Congress responded with a mandate: build a system that works independently of air traffic control - one that watches the sky itself and tells pilots what to do.
The engineering is elegant. TCAS doesn’t use radar. It listens to the transponders on other aircraft - the same transponders that answer air traffic control - interrogating them and timing how long the replies take to build a picture of who’s around, how close, and how fast they’re closing.
How Does TCAS Actually Work?
When another aircraft gets too close, TCAS issues a Traffic Advisory. A voice announces “Traffic, traffic” - a heads-up to look outside.
If the geometry keeps worsening, TCAS escalates to a Resolution Advisory. Now it isn’t advising; it’s commanding: “Climb, climb” or “Descend, descend.” The two aircraft communicate over the transponder link and coordinate automatically - one is told to climb, the other to descend. They divide up the sky between them without a single word passing between the crews.
That is genuine cockpit automation, and it has been saving lives since the early 1990s.
But the logic inside TCAS is essentially a rulebook - thousands of lines of hand-written rules refined by engineers over decades. It’s a giant flowchart, patched and re-patched every time the real world exposed a corner case the engineers hadn’t anticipated.
What Happened at Überlingen?
The accident everyone in this field remembers is Überlingen. In 2002, over southern Germany, a passenger jet and a cargo jet were on a collision course. TCAS fired correctly, telling one crew to climb and the other to descend.
But at the same moment, an overloaded human air traffic controller told one of those crews to descend - contradicting the box. That crew followed the controller. Both aircraft ended up descending into each other. 71 people died, most of them children.
That accident rewrote the rulebook. It produced the software version known as 7.1, which added smarter logic - including a level-off command and the ability to reverse a Resolution Advisory when an aircraft isn’t complying. It also cemented one rule that is now gospel: when TCAS tells you to climb or descend, you follow the box - not the controller.
Why Replace TCAS at All?
Patching a rulebook has limits. Every fix makes the flowchart bigger and harder to reason about. And modern airspace is throwing traffic at it that 1980s engineers never imagined - drones, air taxis, and closely spaced parallel approaches at the busiest airports. The rulebook was creaking under the load.
So the FAA and engineers at MIT Lincoln Laboratory asked a different question: what if we stop writing rules by hand entirely?
How Is ACAS X Different From TCAS?
Instead of a human writing thousands of if-then rules, ACAS X engineers built a mathematical model of the encounter. They described each aircraft as a set of states - position, closure rate, vertical rate - and they described the uncertainty, because you never know exactly what another aircraft will do next.
Then they defined costs. A near miss is very expensive. An unnecessary alarm is a little expensive. Commanding a climb when a gentle level-off would do falls somewhere in between. Every outcome, good or bad, gets a number.
A computer then runs for weeks on the ground, grinding through millions of possible encounters to solve one question repeatedly: from this exact situation, which action leads to the lowest total expected cost down the road?
The technique has a formal name - a partially observable Markov decision process, solved with dynamic programming. Stripped down, it means the machine plays out the future millions of times and works out the smartest move for every situation a pilot could ever face.
What Actually Flies in the Airplane?
The output of all that computation is not a rulebook. It’s a table - an enormous numeric lookup table. That’s what flies. In the air, the system reads its sensors, finds where it sits in that table, and reads out the optimized answer: climb, descend, level off, or do nothing.
Because it was optimized against real recorded traffic, ACAS X does two things at once that the old rulebook struggled to balance. It catches dangerous encounters at least as well as TCAS, and it fires far fewer nuisance alerts. In testing, unnecessary Resolution Advisories dropped substantially - and that matters, because an alarm crews learn to ignore is worse than no alarm at all.
A useful analogy: TCAS is a rulebook written by very smart lawyers over 30 years. ACAS X is a chess engine that solved the position offline and simply hands you the best move. Same goal, completely different philosophy underneath.
What Are the Different Versions of ACAS X?
The “X” isn’t a version number - it’s a family name.
- ACAS X-a (“active”) is the general-purpose version meant to replace TCAS in airliners and business jets. It actively interrogates transponders just like the system it replaces, and issues the same familiar climb-and-descend vertical commands, so pilots don’t have to relearn anything.
- ACAS X-o (“operations”) is tuned for specific situations like closely spaced parallel runways, where standard logic would otherwise nag constantly about the aircraft landing safely right next door.
- ACAS X-u (“unmanned”) is built for drones and can command horizontal maneuvers - turn left, turn right. A drone often lacks the energy to climb or dive like a jet, and it needs to sense and avoid to operate beyond the operator’s line of sight.
- ACAS X-r (“rotorcraft”) is the one to watch for the electric air taxi business, since eVTOL aircraft need collision avoidance tuned to how they actually move.
Who Is Building ACAS X?
The intellectual heavy lifting came from MIT Lincoln Laboratory and the FAA, with international standards written through RTCA, the body that produces the technical specifications the industry runs on. The core specification for the airline version carries the label DO-385. The hardware that goes in the panel comes from established avionics manufacturers, including Honeywell and ACSS.
When Will ACAS X Actually Be Flying?
The standards are done, the math is proven, and the test results are strong - but your favorite airline is not flying ACAS X tomorrow.
TCAS works. It’s mandated worldwide, installed on tens of thousands of airframes, and there is enormous inertia in swapping out a safety-critical box that is currently doing its job well. A system like this transitions over years, carefully, with regulators watching every step - because the failure mode here isn’t an annoyed passenger. It’s another Überlingen.
The realistic picture is a slow fade: new standards published, equipment certified, then a long tail of adoption where ACAS X appears first where it solves problems TCAS can’t. The drone and air-taxi versions may actually lead, because there is no legacy TCAS answer for a pilotless aircraft that needs to turn to avoid a collision. The old rulebook has no horizontal move to offer them; the new brain does.
What Are the Honest Trade-offs?
When your safety logic is a giant precomputed table instead of readable rules, you gain performance but trade away a certain kind of transparency. You can’t simply open the file and read the reasoning the way you could with pseudocode.
Certifying software you can’t read line by line - and proving to a regulator that it’s safe in every case - is genuinely hard work. Engineers handle it by testing against millions of simulated encounters rather than reading the logic aloud. That’s a different way of trusting a machine, and the industry is still building the muscles for it.
Why This Matters for Pilots
ACAS X represents a shift in how aviation makes itself safe. For decades, safety meant smart people writing down rules, each one a lesson usually paid for in blood. ACAS X is one of the first places in the cockpit where the philosophy flips: define what you care about - the cost of a crash, the cost of a false alarm - and let optimization discover the rules.
That’s a preview of where much of cockpit automation is heading - not a robot that flies the plane, but a system that has quietly worked out the best move before you ever got into the situation, then hands it to you when the moment comes. The same spirit already appears in emergency systems on light aircraft that will turn you toward a runway or level your wings when things go wrong. For now, the enduring rule stands: trust the box when it talks.
Key Takeaways
- TCAS, today’s collision avoidance standard, runs on a hand-written rulebook and was mandated after fatal midair collisions in 1978 (San Diego) and 1986 (Cerritos).
- The 2002 Überlingen collision killed 71 people and produced TCAS software version 7.1, cementing the rule that pilots follow the box over the controller.
- ACAS X replaces the rulebook with a precomputed cost-optimized lookup table, built using a partially observable Markov decision process solved on the ground.
- The family includes X-a (airliners), X-o (special operations), X-u (drones, with horizontal maneuvers), and X-r (rotorcraft and eVTOL).
- Developed by MIT Lincoln Laboratory, the FAA, and RTCA (spec DO-385), with hardware from Honeywell and ACSS - adoption will be gradual, likely led by drone and air-taxi applications.
Radio Hangar. Aviation talk, built by pilots. Listen live | More articles