DEV Community

TiltedLunar123
TiltedLunar123

Posted on

SLE, ARO, ALE: the Security+ risk math that looks easy until the question inverts it

Most people studying for SY0-701 can recite the quantitative risk formulas in their sleep. Then the exam hands them a word problem where the frequency is phrased as "once every four years" instead of a clean decimal, and half the room writes down a different answer. The math is not hard. The wording is where points leak out.

Here is the whole chain, in order, with no shortcuts.

The five values, in the order they build on each other

AV (Asset Value) is what the thing is worth. A server, a database, a building. Say a customer database is valued at $200,000.

EF (Exposure Factor) is the percentage of that value you lose in one bad event. Not every incident destroys the whole asset. A ransomware hit might cost you 40 percent of the database's value in downtime, recovery, and lost records. EF is 0.40.

SLE (Single Loss Expectancy) is the dollar cost of one event:

SLE = AV x EF
SLE = $200,000 x 0.40 = $80,000
Enter fullscreen mode Exit fullscreen mode

ARO (Annualized Rate of Occurrence) is how many times per year you expect the event. This is the one that bites people. "Twice a year" is 2. "Once every four years" is not 4. It is 1 divided by 4, which is 0.25.

ALE (Annualized Loss Expectancy) is what you expect to lose per year:

ALE = SLE x ARO
ALE = $80,000 x 0.25 = $20,000
Enter fullscreen mode Exit fullscreen mode

That $20,000 is the number a security program actually budgets against. It answers "how much is this risk costing us per year, on average."

Where the points actually leak

Inverting ARO. When the question says "once every five years," the rate is 0.2, not 5. Read the sentence twice. If the event is rare, ARO is a fraction. If it happens several times a year, ARO is a whole number bigger than one.

Stopping at SLE. A question gives you AV, EF, and a frequency, then asks for annual loss. If you answer with SLE you answered a different question. Annual means you multiply by ARO. Every time.

EF as a percent vs a decimal. Forty percent is 0.40 in the formula. Plugging in 40 inflates your SLE by a factor of one hundred, and the answer will not match any option, which is at least a useful signal that you slipped.

The cost-benefit trap. The exam loves to follow the math with a proposed control that costs some amount per year, then ask whether it is worth deploying. The rule is simple: if the annual cost of the control is less than the reduction in ALE, it is justified. If a control costs $25,000 per year but only drops your ALE from $20,000 to $12,000, you spent $25,000 to save $8,000. That is a bad trade, and the question wants you to say so.

A second pass, because repetition is the point

A warehouse is valued at $1,000,000. A fire would destroy an estimated 25 percent of it. Records suggest a fire of that size every ten years. Find the ALE.

EF  = 0.25
SLE = $1,000,000 x 0.25 = $250,000
ARO = 1 / 10 = 0.1
ALE = $250,000 x 0.1 = $25,000
Enter fullscreen mode Exit fullscreen mode

If you got $250,000 you forgot to annualize. If you got $2,500,000 you multiplied by 10 instead of 0.1. Both are the exact mistakes the distractor answers are built from.

How this shows up on test day

SY0-701 puts this in the risk management material (Domain 5), and it can appear as a straight calculation or buried inside a performance-based question where you have to pick the justified control. You will not get a calculator surprise: the numbers are usually clean once you set ARO correctly. The skill being tested is whether you can read a sentence, assign each number to the right letter, and not stop one step early.

The fastest way to make this automatic is to grind a handful of these with different phrasings until the "once every N years means 1/N" move is reflex. Mixed practice beats re-reading the formula sheet, because the formula was never the hard part.

If you want to see where you actually stand on this and the rest of the objectives, there is a free diagnostic at secplusmastery.com/diagnostic that maps your weak spots to specific domains, and the question bank on secplusmastery.com has plenty of these risk problems with worked solutions if you want to drill them.

One last sanity check you can carry into the exam: ALE is a per-year number, and it should be smaller than SLE unless the event happens more than once a year. If your ALE comes out larger than your SLE and the event is rare, you inverted ARO. Catch that and you have caught the single most common mistake on this topic.

Top comments (0)