Home / Practice / Samples
Solved sample questions Fully solved sample questions from the ActuaryDeck bank - original SOA Exam P and Exam FM problems with the complete worked solution, at least two on every syllabus topic, free to read and never behind a paywall.
46 questions from the 400-question bank (220 for Exam P and 180 for Exam FM): 2 on each of the 23 syllabus topics, so every topic can be judged rather than a lucky few. They never rotate and they are never gated: read the solutions in full before deciding whether the rest is worth paying for.
Exam P - Set theory and probability axioms Exam P Set theory and probability axioms Core
A motor insurer finds that 48% of its policyholders have a telematics device, 31% have a named second driver, and 17% have both. What proportion have at least one of the two?
A 0.1700
B 0.6200
C 0.6500
D 0.7900
E 0.9600
Solution 'At least one' is the union, so inclusion-exclusion applies: P ( A ∪ B ) = P ( A ) + P ( B ) − P ( A ∩ B ) . Substituting the given proportions gives 0.48 + 0.31 − 0.17 . That is 0.62 . The subtraction is essential because the 17% with both were counted once in each of the first two figures. As a check, the proportion with neither is 1 − 0.62 = 0.38 , which is consistent with the numbers given. Trap. Adding 0.48 and 0.31 to get 0.79 forgets that the overlap has been double-counted.
Exam P Set theory and probability axioms Exam level
A risk register records P ( A ) = 0.5 , P ( B ) = 0.6 and P ( A ∩ B ) = 0.2 . Find the probability that exactly one of the two events occurs.
A 0.1000
B 0.3000
C 0.5000
D 0.7000
E 0.9000
Solution 'Exactly one' is the union minus the intersection: the union counts everything that happens, and removing the overlap leaves the parts where only one occurred. P ( A ∪ B ) = 0.5 + 0.6 − 0.2 = 0.9 . P ( exactly one ) = 0.9 − 0.2 = 0.7 . Equivalently [ P ( A ) − P ( A ∩ B ) ] + [ P ( B ) − P ( A ∩ B ) ] = 0.3 + 0.4 = 0.7 , the same computation written as two disjoint pieces. Trap. Reporting the union (0.9), which includes the outcomes where BOTH events occur.
All Set theory and probability axioms questions
Exam P - Combinatorics and counting Exam P Combinatorics and counting Core
An actuarial department must send 4 of its 11 analysts to a conference. In how many ways can the group be chosen?
A 44
B 110
C 330
D 1 , 320
E 7 , 920
Solution The group is unordered - sending analysts A, B, C, D is the same as sending D, C, B, A - so this is a combination. ( 4 11 ) = 4 ! 7 ! 11 ! . = 4 × 3 × 2 × 1 11 × 10 × 9 × 8 = 24 7920 = 330 . The ordered count P ( 11 , 4 ) = 7920 is exactly 4 ! = 24 times too large, which is why it appears as a distractor. Trap. Using the permutation count 7,920, which treats two identical groups in different orders as different selections.
Exam P Combinatorics and counting Core
A password consists of 3 letters (from 26, repeats allowed) followed by 2 digits (from 10, repeats allowed). How many passwords are possible?
A 15 , 600
B 676 , 000
C 1 , 404 , 000
D 1 , 757 , 600
E 11 , 232 , 000
Solution Each position is chosen independently, so the multiplication rule applies directly. The letters contribute 2 6 3 = 17 , 576 . The digits contribute 1 0 2 = 100 . 17 , 576 × 100 = 1 , 757 , 600 passwords. Trap. Using permutations without repetition when the problem explicitly allows repeats.
All Combinatorics and counting questions
Exam P - Conditional probability and independence Exam P Conditional probability and independence Core
Among all claims, 30% are commercial and 18% of all claims are both commercial and above 10,000. Given that a claim is commercial, what is the probability it exceeds 10,000?
A 0.1800
B 0.3000
C 0.4200
D 0.5400
E 0.6000
Solution Let A be 'above 10,000' and B be 'commercial'. The 18% is a JOINT probability out of all claims. P ( A ∣ B ) = P ( B ) P ( A ∩ B ) = 0.30 0.18 . = 0.60 . The conditional probability is larger than the joint one because the denominator has shrunk to the commercial claims only. Trap. Reading the 18% as already conditional on being commercial.
Exam P Conditional probability and independence Exam level
Of a group of policyholders, 40% own a home, 25% own a boat, and 15% own both. Given a policyholder owns a home, what is the probability they also own a boat?
A 0.1500
B 0.2500
C 0.3750
D 0.5000
E 0.6000
Solution The conditioning event is 'owns a home', so P ( home ) = 0.40 is the denominator. P ( boat ∣ home ) = P ( home ) P ( both ) = 0.40 0.15 . = 0.375 . Since P ( boat ) = 0.25 = 0.375 , home and boat ownership are NOT independent in this book - owning a home raises the chance of owning a boat. All Conditional probability and independence questions
Exam P - Bayes' theorem and the law of total probability Exam P Bayes' theorem and the law of total probability Core
A motor book is 50% low risk, 30% standard and 20% high risk, with annual claim probabilities 2%, 5% and 11%. What proportion of policyholders claim in a year?
A 0.0180
B 0.0350
C 0.0470
D 0.0600
E 0.0900
Solution This is the law of total probability across a three-part partition. P ( claim ) = 0.5 ( 0.02 ) + 0.3 ( 0.05 ) + 0.2 ( 0.11 ) . = 0.010 + 0.015 + 0.022 . = 0.047 . This figure is the denominator of every Bayes calculation on this book, so it is worth computing once and reusing. Trap. Averaging 2%, 5% and 11% without weights, which gives 6% and assumes equal class sizes.
Exam P Bayes' theorem and the law of total probability Core
Three suppliers provide 25%, 35% and 40% of parts, with failure rates 0.02, 0.04 and 0.05. What is the overall failure rate?
A 0.0300
B 0.0367
C 0.0390
D 0.0410
E 0.0500
Solution Weight each supplier's failure rate by its share of parts. 0.25 ( 0.02 ) + 0.35 ( 0.04 ) + 0.40 ( 0.05 ) . = 0.005 + 0.014 + 0.020 . = 0.039 , between the smallest and largest rates as any weighted average must be. All Bayes' theorem and the law of total probability questions
Exam P - Random variables and distribution functions Exam P Random variables and distribution functions Core
A loss X has CDF F ( x ) = 1 − ( 1 + x ) − 3 for x > 0 . Find P ( 1 < X ≤ 4 ) .
A 0.0080
B 0.1170
C 0.1250
D 0.8750
E 0.9920
Solution Any interval probability is a difference of CDF values: P ( a < X ≤ b ) = F ( b ) − F ( a ) . F ( 4 ) = 1 − 5 − 3 = 1 − 0.008 = 0.992 . F ( 1 ) = 1 − 2 − 3 = 1 − 0.125 = 0.875 . P = 0.992 − 0.875 = 0.117 , so about 11.7% of losses fall in that band. Because the variable is continuous, using strict or weak inequalities makes no difference to the answer. Trap. Integrating the density from scratch when the CDF is already given - slower and an easy place to lose a constant.
Exam P Random variables and distribution functions Exam level
A random variable is uniform on the integers 1 through 20. Find P ( X > 14 ) .
A 0.0500
B 0.2500
C 0.3000
D 0.3500
E 0.7000
Solution Each of the 20 integers has probability 1/20 . 'Greater than 14' means the values 15 through 20 - six of them. P ( X > 14 ) = 6/20 . = 0.30 . Counting carefully matters: 'at least 14' would give seven values and 0.35. Trap. Including 14 itself and answering 0.35.
All Random variables and distribution functions questions
Exam P - Discrete distributions Exam P Discrete distributions Core
A claims handler reviews 10 independent files, each incorrectly coded with probability 0.25. What is the probability exactly 3 are incorrectly coded?
A 0.0156
B 0.1877
C 0.2503
D 0.2816
E 0.7500
Solution Fixed number of independent trials with a constant success probability makes this binomial with n = 10 , p = 0.25 . P ( X = 3 ) = ( 3 10 ) ( 0.25 ) 3 ( 0.75 ) 7 . = 120 × 0.015625 × 0.133484 . = 0.2503 . Exam P Discrete distributions Exam level
The number of claims filed by a policyholder takes values 0, 1, 2, 3 with probabilities 0.25, 0.35, 0.28 and 0.12. Find the mean.
A 0.9371
B 1.0000
C 1.2700
D 1.5000
E 2.5500
Solution E [ X ] = ∑ x p ( x ) over the support. = 0 ( 0.25 ) + 1 ( 0.35 ) + 2 ( 0.28 ) + 3 ( 0.12 ) . = 0 + 0.35 + 0.56 + 0.36 . = 1.27 claims per policyholder per year. The mean is not one of the attainable values, which is normal: an expectation is a weighted centre of mass, not an outcome. It sits above 1 because the upper values, though less likely, pull the average up. All Discrete distributions questions
Exam P - Continuous distributions Exam P Continuous distributions Core
Claim sizes are exponential with mean 800. What is the probability a claim exceeds 1,200?
A 0.2231
B 0.3679
C 0.4724
D 0.5276
E 0.6321
Solution For an exponential with mean θ , the survival function is S ( x ) = e − x / θ - the single most useful form of the distribution. Here θ = 800 , so S ( 1200 ) = e − 1200/800 = e − 1.5 . = 0.223130 . The rate parameter is λ = 1/800 ; mixing up rate and mean is the classic slip, and it would give e − 960000 , an obviously absurd answer. Trap. Using λ = 800 instead of λ = 1/800.
Exam P Continuous distributions Exam level
Losses are exponential with mean 500. Given a loss exceeds 300, what is the probability it exceeds 800?
A 0.2019
B 0.3679
C 0.4493
D 0.5488
E 0.7408
Solution The exponential is memoryless: P ( X > s + t ∣ X > s ) = P ( X > t ) . Here s = 300 and s + t = 800 , so t = 500 . P ( X > 500 ) = e − 500/500 = e − 1 . = 0.367879 . Computing S ( 800 ) / S ( 300 ) = e − 1.6 / e − 0.6 gives the same thing - which IS the memoryless property. Trap. Reporting the unconditional S(800) = 0.2019 and ignoring the information already given.
All Continuous distributions questions
Exam P - Expectation, variance and moments Exam P Expectation, variance and moments Core
A random variable has E [ X ] = 4 and E [ X 2 ] = 25 . Find the variance.
A 3.0000
B 5.0000
C 9.0000
D 16.0000
E 21.0000
Solution The computational formula is Var ( X ) = E [ X 2 ] − ( E [ X ] ) 2 . ( E [ X ] ) 2 = 16 . Var ( X ) = 25 − 16 . = 9 , so the standard deviation is 3. Never subtract E [ X ] from E [ X 2 ] directly - the square matters. Trap. Reporting the standard deviation 3, or subtracting 4 from 25 to get 21.
Exam P Expectation, variance and moments Stretch
A non-negative variable has survival function S ( x ) = ( 1 + x ) − 2 for x > 0 . Find E [ X ] .
A 0.5000
B 1.0000
C 1.5000
D 2.0000
E It does not exist
Solution For a non-negative variable, E [ X ] = ∫ 0 ∞ S ( x ) d x - usually much faster than integrating x f ( x ) . ∫ 0 ∞ ( 1 + x ) − 2 d x = [ − ( 1 + x ) − 1 ] 0 ∞ . = 0 − ( − 1 ) = 1 . The survival-function route avoids differentiating S to get the density at all. Trap. Differentiating S to get f and then integrating xf(x) - correct but twice the work.
All Expectation, variance and moments questions
Exam P - Moment generating functions Exam P Moment generating functions Core
A random variable has M ( t ) = e 3 t + 8 t 2 . Find its variance.
A 3.0000
B 8.0000
C 9.0000
D 16.0000
E 64.0000
Solution The normal MGF is exp ( μ t + 2 σ 2 t 2 ) , so match coefficients. The t coefficient gives μ = 3 . The t 2 coefficient gives 2 σ 2 = 8 , so σ 2 = 16 . The variance is 16. Recognising the shape is far faster than differentiating twice. Trap. Reading the t² coefficient as the variance and answering 8.
Exam P Moment generating functions Exam level
A variable has M ( t ) = 0.2 + 0.3 e t + 0.5 e 3 t . Find E [ X ] .
A 0.8000
B 1.5000
C 1.8000
D 2.0000
E 3.0000
Solution This MGF is a weighted sum of e t x terms, so it describes a discrete variable taking values 0, 1 and 3 with probabilities 0.2, 0.3 and 0.5. Read the distribution straight off the exponents and coefficients. E [ X ] = 0 ( 0.2 ) + 1 ( 0.3 ) + 3 ( 0.5 ) . = 1.8 . Differentiating and setting t = 0 gives the same, but reading it off is faster and less error-prone. Trap. Differentiating carelessly and dropping the factor of 3 from the e^{3t} term.
All Moment generating functions questions
Exam P - Joint, marginal and conditional distributions Exam P Joint, marginal and conditional distributions Exam level
Two standardised losses have joint density f ( x , y ) = x + y on the unit square. Find P ( X + Y < 1 ) .
A 0.2500
B 0.3333
C 0.5000
D 0.6667
E 0.7500
Solution Sketch the region: the triangle below the line y = 1 − x inside the unit square. P = ∫ 0 1 ∫ 0 1 − x ( x + y ) d y d x . The inner integral is x ( 1 − x ) + 2 ( 1 − x ) 2 . Integrating over x from 0 to 1 gives 2 1 − 3 1 + 6 1 = 3 1 = 0.3333 . Trap. Using constant limits 0 to 1 for y, which integrates over the whole square rather than the triangle.
Exam P Joint, marginal and conditional distributions Stretch
N is Poisson with mean 4, and given N = n the claim total has mean 300 n and variance 10 , 000 n . Find Var of the total.
A 40 , 000
B 360 , 000
C 400 , 000
D 1 , 200 , 000
E 1 , 440 , 000
Solution Use the conditional variance decomposition: Var ( S ) = E [ Var ( S ∣ N ) ] + Var ( E [ S ∣ N ] ) . E [ Var ( S ∣ N ) ] = E [ 10 , 000 N ] = 10 , 000 ( 4 ) = 40 , 000 . Var ( E [ S ∣ N ] ) = Var ( 300 N ) = 90 , 000 Var ( N ) = 90 , 000 ( 4 ) = 360 , 000 . Total: 40 , 000 + 360 , 000 = 400 , 000 . Trap. Using only one of the two terms - the 'variance of the mean' piece is the one usually forgotten.
All Joint, marginal and conditional distributions questions
Exam P - Transformations and order statistics Exam P Transformations and order statistics Core
U is uniform on ( 0 , 1 ) and Y = − 2 ln U . Find P ( Y > 3 ) .
A 0.2231
B 0.3333
C 0.5000
D 0.6065
E 0.7769
Solution Work through the CDF: Y > 3 ⟺ − 2 ln U > 3 ⟺ ln U < − 1.5 . The inequality FLIPPED when dividing by − 2 - the step most often missed. ln U < − 1.5 ⟺ U < e − 1.5 , and for a standard uniform P ( U < c ) = c . P ( Y > 3 ) = e − 1.5 = 0.2231 . In fact Y is exponential with mean 2, which is the standard way to simulate exponentials. Trap. Failing to reverse the inequality when dividing by a negative number.
Exam P Transformations and order statistics Exam level
Z is standard normal and X = 5 Z + 20 . Find P ( X > 28 ) .
A 0.0548
B 0.1587
C 0.2119
D 0.7881
E 0.9452
Solution A linear transform of a normal is normal: X has mean 20 and standard deviation 5. Standardise: z = 5 28 − 20 = 1.6 . P ( X > 28 ) = 1 − Φ ( 1.6 ) = 1 − 0.945201 . = 0.054799 , so about one observation in eighteen exceeds 28. Recognising that a linear transform of a normal stays normal is what makes this a two-line problem rather than a change-of-variable exercise. All Transformations and order statistics questions
Exam P - Deductibles, limits and risk measures Exam P Deductibles, limits and risk measures Exam level
Losses are exponential with mean 1,000 and a policy has an ordinary deductible of 250. Find the expected payment PER LOSS.
A 750.00
B 778.80
C 1 , 000.00
D 1 , 250.00
E 1 , 284.03
Solution E [( X − d ) + ] = ∫ d ∞ S ( x ) d x , and for an exponential this is θ e − d / θ . = 1 , 000 e − 250/1000 = 1 , 000 e − 0.25 . = 1 , 000 ( 0.778801 ) . = 778.80 . This averages over ALL losses, including the small ones that pay nothing. Trap. Answering 750 by subtracting the deductible from the mean, which ignores losses below the deductible.
Exam P Deductibles, limits and risk measures Stretch
Losses are Pareto with α = 3 and θ = 1 , 000 . Find E [ X ] and comment on the tail.
A Mean 333.33; variance infinite
B Mean 500.00; variance finite
C Mean 500.00; variance infinite
D Mean 333.33; variance finite
E Mean 1,000.00; variance finite
Solution For the two-parameter Pareto, E [ X ] = α − 1 θ = 2 1000 = 500 . The variance exists whenever α > 2 , and here α = 3 . Var ( X ) = ( α − 1 ) 2 ( α − 2 ) α θ 2 = 4 3 × 1 0 6 = 750 , 000 . So the standard deviation is about 866, well above the mean - heavy-tailed, but with both moments finite. Trap. Assuming any Pareto has infinite variance; it depends entirely on whether α exceeds 2.
All Deductibles, limits and risk measures questions
Exam P - Sums, the CLT and normal approximation Exam P Sums, the CLT and normal approximation Exam level
A portfolio has 100 independent claims, each with mean 50 and standard deviation 12. Approximate the probability that total claims exceed 5,200.
A 0.0478
B 0.0668
C 0.1587
D 0.4325
E 0.9522
Solution E [ S ] = 100 ( 50 ) = 5 , 000 and Var ( S ) = 100 ( 144 ) = 14 , 400 , so σ S = 120 . Variances add; standard deviations do not - that is the whole content of the n scaling. z = 120 5200 − 5000 = 1.6667 . P ( S > 5200 ) ≈ 1 − Φ ( 1.6667 ) = 1 − 0.952210 = 0.047790 . Trap. Using n·σ = 1,200 for the standard deviation of the sum instead of √n·σ = 120.
Exam P Sums, the CLT and normal approximation Exam level
Claim counts across 50 independent policies are each Poisson with mean 2. Approximate the probability the total exceeds 115.
A 0.0606
B 0.0668
C 0.1587
D 0.2266
E 0.9429
Solution The sum of independent Poissons is Poisson with mean 50 × 2 = 100 , and its variance is also 100. σ = 10 . z = 10 115 − 100 = 1.5 (ignoring the continuity correction for a first pass). Applying the half-unit continuity correction at 115.5 gives z = 1.55 and P ≈ 1 − Φ ( 1.55 ) = 0.0606 . Trap. Using √(50) × 2 for the standard deviation rather than √(50 × 2).
All Sums, the CLT and normal approximation questions
Exam FM - Measurement of interest Exam FM Measurement of interest Core
An account earns an effective annual discount rate of 6%. Find the equivalent effective annual interest rate.
A 5.6604%
B 6.0000%
C 6.3830%
D 6.6000%
E 12.7660%
Solution The relationship between the two rates is d = 1 + i i , which rearranges to i = 1 − d d . i = 1 − 0.06 0.06 = 0.94 0.06 . = 0.063830 , or 6.3830%. The interest rate must EXCEED the discount rate, because discount is interest paid in advance - a useful check on the direction of the algebra. Trap. Computing d(1+d) = 6.36% or treating the two rates as equal.
Exam FM Measurement of interest Exam level
At what effective annual rate does money double in 12 years?
A 5.9463%
B 6.0000%
C 6.1163%
D 8.3333%
E 12.0000%
Solution Solve ( 1 + i ) 12 = 2 . 1 + i = 2 1/12 = 1.059463 . i = 5.9463% . The 'rule of 72' estimate 72/12 = 6% is close, which is exactly why that approximation survives - but it is an approximation. The rule is most accurate near 8%; it drifts noticeably at very low or very high rates. Trap. Using the rule of 72 as though it were exact.
All Measurement of interest questions
Exam FM - Level annuities Exam FM Level annuities Core
Find the present value of 12 annual payments of 2,500, the first one year from now, at 6% effective.
A 20 , 000.00
B 20 , 959.61
C 21 , 500.00
D 22 , 217.19
E 30 , 000.00
Solution Payments at the END of each year make this an annuity-immediate: P V = 2 , 500 a 12 ∣0.06 . a 12 ∣0.06 = 0.06 1 − 1.0 6 − 12 = 8.383844 . P V = 2 , 500 × 8.383844 . = 20 , 959.61 . The annuity-due version would be 6% larger, at 22,217.19. Trap. Using the due factor when the first payment is a year away.
Exam FM Level annuities Core
Which relationship is always true?
A a ¨ n ∣ = a n ∣ ( 1 + i ) n
B a ¨ n ∣ = a n ∣ ( 1 + i )
C a ¨ n ∣ = a n ∣ + n
D a ¨ n ∣ = a n ∣ / ( 1 + i )
E a ¨ n ∣ = a n + 1 ∣
Solution An annuity-due pays each instalment exactly ONE period earlier than the corresponding annuity-immediate. Shifting every payment one period earlier multiplies its present value by ( 1 + i ) - once, not n times. So a ¨ n ∣ = a n ∣ ( 1 + i ) , equivalently d 1 − v n . The related identity a ¨ n ∣ = 1 + a n − 1 ∣ says the same thing from the other direction: a payment now plus a shorter immediate annuity. Trap. Raising (1+i) to the power n, which shifts the whole annuity n periods rather than one.
All Level annuities questions
Exam FM - Varying annuities and perpetuities Exam FM Varying annuities and perpetuities Exam level
A scholarship pays 1,000 at the end of year 1, 2,000 at the end of year 2, and so on up to 10,000 at the end of year 10. At 6% effective, find the present value.
A 36 , 962.41
B 38 , 000.00
C 40 , 000.00
D 43 , 998.55
E 55 , 000.00
Solution The payments are 1 , 000 × ( 1 , 2 , … , 10 ) , so this is 1 , 000 ( I a ) 10 ∣0.06 . ( I a ) n ∣ = i a ¨ n ∣ − n v n - note the DUE factor in the numerator. a ¨ 10 ∣ = 7.801692 and 10 v 10 = 5.583948 . ( I a ) 10 ∣ = 0.06 2.217744 = 36.9624 , so the present value is 36,962.41. Trap. Using a rather than ä in the numerator, which is the signature error on increasing annuities.
Exam FM Varying annuities and perpetuities Exam level
At 5%, find the present value of payments of 100 at the end of year 1 increasing by 100 a year for 8 years.
A 2 , 500.00
B 2 , 743.32
C 3 , 116.44
D 3 , 500.00
E 4 , 000.00
Solution The payments are 100 × ( 1 , 2 , … , 8 ) , so this is 100 ( I a ) 8 ∣0.05 . a 8 ∣0.05 = 6.463213 , so a ¨ 8 ∣ = 6.786373 . 8 v 8 = 8 ( 0.676839 ) = 5.414715 . ( I a ) 8 ∣ = 0.05 6.786373 − 5.414715 = 27.43316 , so P V = 2 , 743.32 . The average payment is 450 across eight years, an undiscounted total of 3,600 - discounting removes about a quarter of it. All Varying annuities and perpetuities questions
Exam FM - Loan amortisation and sinking funds Exam FM Loan amortisation and sinking funds Core
A 250,000 loan is repaid with level annual payments over 20 years at 5.5% effective. Find the annual payment.
A 12 , 500.00
B 18 , 000.00
C 20 , 919.83
D 22 , 000.00
E 25 , 000.00
Solution The loan equals the present value of the payments: L = P a n ∣ i . a 20 ∣0.055 = 11.950382 . P = 11.950382 250 , 000 . = 20 , 919.83 . Total payments come to 418,397 against a 250,000 loan, so interest is about 168,000. Exam FM Loan amortisation and sinking funds Exam level
A 40,000 loan at 8% is repaid with level annual payments over 10 years. Find the interest portion of the FIRST payment.
A 2 , 239.60
B 3 , 200.00
C 4 , 000.00
D 5 , 961.16
E 6 , 000.00
Solution The first payment's interest is charged on the full original balance. I 1 = L × i = 40 , 000 × 0.08 . = 3 , 200 . The payment is 40 , 000/ a 10 ∣0.08 = 5 , 961.16 , so the principal portion is 2 , 761.16 . Trap. Applying the general formula when the first payment's interest is simply L·i - much faster.
All Loan amortisation and sinking funds questions
Exam FM - Bond pricing, premium and discount Exam FM Bond pricing, premium and discount Core
A 1,000 par-value 10-year bond with 8% annual coupons is bought to yield 6% effective. Find the price.
A 1 , 000.00
B 1 , 080.00
C 1 , 147.20
D 1 , 200.00
E 1 , 260.00
Solution Use the basic formula P = F r a n ∣ i + C v n , with the coupon rate applied to FACE and the yield discounting to REDEMPTION. F r = 1 , 000 ( 0.08 ) = 80 , a 10 ∣0.06 = 7.360087 , v 10 = 0.558395 . P = 80 ( 7.360087 ) + 1 , 000 ( 0.558395 ) = 588.81 + 558.40 . = 1 , 147.20 - a premium bond, because the coupon rate exceeds the yield. Trap. Discounting the coupons at the coupon rate rather than the yield.
Exam FM Bond pricing, premium and discount Stretch
A callable bond trades at a premium. To be safe, an investor should price it to which date?
A The maturity date
B The earliest call date
C The latest call date
D The midpoint of the call window
E It makes no difference
Solution The ISSUER chooses when to call, and will choose whichever date is worst for the investor. A premium bond's book value falls towards redemption over time, so the investor loses most if the bond is called EARLY. Pricing to the earliest call therefore guarantees at least the assumed yield whatever the issuer does. For a DISCOUNT bond the reasoning reverses: the book value rises, so the worst case is the latest call date. Trap. Pricing a callable premium bond to maturity and overpaying for a bond that will be called.
All Bond pricing, premium and discount questions
Exam FM - Cash flow analysis, NPV and IRR Exam FM Cash flow analysis, NPV and IRR Core
A project costs 50,000 now and returns 18,000, 22,000 and 25,000 at the ends of years 1 to 3. Find the NPV at 9%.
A − 4 , 335.31
B 0.00
C 4 , 335.31
D 15 , 000.00
E 54 , 335.31
Solution Discount each inflow at 9% and subtract the outlay, which is NOT discounted because it occurs at time 0. 18 , 000 ( 0.917431 ) = 16 , 513.76 ; 22 , 000 ( 0.841680 ) = 18 , 516.96 ; 25 , 000 ( 0.772183 ) = 19 , 304.58 . Total inflows: 54 , 335.31 . NP V = 54 , 335.31 − 50 , 000 = 4 , 335.31 , so the project clears the 9% hurdle. Trap. Discounting the initial outlay by one period, which overstates the NPV by about 4,100.
Exam FM Cash flow analysis, NPV and IRR Core
Which return measure is designed to judge an investment MANAGER rather than the investor's own timing?
A Dollar-weighted return
B Time-weighted return
C Internal rate of return
D Current yield
E Nominal yield
Solution The time-weighted return chains sub-period growth factors, so the size and timing of deposits cancel out. That isolates the performance of the underlying investments, which is what a manager controls. The dollar-weighted return (an IRR on the fund's cash flows) does depend on timing, which is what the INVESTOR controls. A manager who performs well while investors add money at the wrong moments will show a good time-weighted and a poor dollar-weighted return. All Cash flow analysis, NPV and IRR questions
Exam FM - Spot rates, forward rates and the yield curve Exam FM Spot rates, forward rates and the yield curve Exam level
Annual spot rates are s 1 = 4% , s 2 = 4.6% , s 3 = 5.1% . Find the present value of 1,000 at the end of each of the next three years.
A 2 , 700.00
B 2 , 736.89
C 2 , 743.79
D 2 , 800.00
E 3 , 000.00
Solution Each cash flow is discounted at ITS OWN spot rate - one rate per date, not one rate per bond. 1 , 000/1.04 = 961.54 ; 1 , 000/1.04 6 2 = 913.98 ; 1 , 000/1.05 1 3 = 861.37 . Total: 961.54 + 913.98 + 861.37 . = 2 , 736.89 . Using a flat 4.6% for all three would give 2,743.79 - close, and wrong. Trap. Applying the three-year spot rate to all three cash flows.
Exam FM Spot rates, forward rates and the yield curve Exam level
The two-year spot rate is 5% and the one-year forward rate from year 2 to year 3 is 7%. Find the three-year spot rate.
A 5.0000%
B 5.6625%
C 6.0000%
D 6.3300%
E 7.0000%
Solution Chaining: ( 1 + s 3 ) 3 = ( 1 + s 2 ) 2 ( 1 + f 2 , 3 ) . ( 1.05 ) 2 ( 1.07 ) = 1.1025 × 1.07 = 1.179675 . 1 + s 3 = 1.17967 5 1/3 = 1.056625 . s 3 = 5.6625% - between the two-year spot and the forward, as a geometric mean must be. Trap. Averaging 5% and 7% arithmetically to get 6%, which ignores that the 5% applies to two years and the 7% to one.
All Spot rates, forward rates and the yield curve questions
Exam FM - Duration and convexity Exam FM Duration and convexity Exam level
Find the Macaulay duration of a 5-year 1,000 par bond with 6% annual coupons at a yield of 6%.
A 4.2124
B 4.4651
C 4.7500
D 5.0000
E 5.3000
Solution Macaulay duration is the present-value-weighted average time to the cash flows. Cash flows are 60 at times 1 to 4 and 1,060 at time 5; at a 6% yield the price is exactly 1,000. D = 1 , 000 ∑ t C t v t with v = 1/1.06 . = 4.4651 years, less than the 5-year term because four coupons arrive first. Trap. Weighting by the cash flows themselves rather than by their present values.
Exam FM Duration and convexity Exam level
For the 5-year 6% par bond at a 6% yield, find the Macaulay convexity.
A 19.9500
B 21.2863
C 22.9187
D 24.0000
E 25.5000
Solution Macaulay convexity is P ∑ t 2 C t v t - the second PV-weighted moment of the payment times. Working that sum over the five cash flows at a 6% yield and dividing by the price of 1,000 gives 21.2863. The MODIFIED convexity P ∑ t ( t + 1 ) C t v t + 2 = 22.9187 is a different quantity. Only the modified version belongs in the price-change estimate; mixing them is the standard error here. Trap. Using Macaulay convexity in the second-order price approximation.
All Duration and convexity questions
Exam FM - Immunisation and asset-liability matching Exam FM Immunisation and asset-liability matching Core
Which set of conditions defines Redington immunisation?
A PV matched, duration matched, asset convexity greater
B PV matched, duration matched, convexity matched
C Duration matched only
D PV matched and asset convexity smaller
E Cash flows matched exactly at every date
Solution Write the surplus S ( i ) = P V A ( i ) − P V L ( i ) . Matching present values makes S = 0 at the current rate. Matching durations makes S ′ ( i ) = 0 , so the current rate is a stationary point of the surplus. Requiring asset convexity STRICTLY greater makes S ′′ ( i ) > 0 , so that stationary point is a minimum. A minimum at zero means any small rate move in either direction produces a surplus, which is exactly what immunisation promises. Trap. Matching convexity as well, which leaves the surplus flat to second order and provides no protection.
Exam FM Immunisation and asset-liability matching Core
What does Redington immunisation NOT protect against?
A A small parallel rise in rates
B A small parallel fall in rates
C A large or non-parallel shift in the yield curve
D The passage of one day
E Any change in rates at all
Solution The derivation is a second-order Taylor expansion of the surplus around the CURRENT rate, assuming the whole curve moves by the same amount. That makes it valid for SMALL PARALLEL shifts only. A large shift takes the expansion outside its useful range, and a twist in the curve breaks the parallel assumption entirely. Durations also drift as time passes, so an immunised portfolio must be rebalanced rather than left alone. Trap. Treating immunisation as permanent protection rather than a local, and perishable, condition.
All Immunisation and asset-liability matching questions
Exam FM - Interest rate swaps and derivatives Exam FM Interest rate swaps and derivatives Exam level
Annual spot rates are 4%, 4.6% and 5.1%. Find the 3-year annual swap rate on a notional of 1.
A 4.6000%
B 5.0000%
C 5.0651%
D 5.1000%
E 5.5000%
Solution The swap rate is R = ∑ t P ( t ) 1 − P ( n ) , where P ( t ) are the zero-coupon prices. P ( 1 ) = 0.961538 , P ( 2 ) = 0.913980 , P ( 3 ) = 0.861374 , summing to 2.736893 . R = 2.736893 1 − 0.861374 = 2.736893 0.138626 . = 5.0651% , just below the 3-year spot rate - a swap rate is a PV-weighted average of the forwards, so it lags the longest spot on a rising curve. Trap. Averaging the spot rates rather than working with the discount factors.
Exam FM Interest rate swaps and derivatives Exam level
A borrower with floating-rate debt wants certainty of payments. Which swap position achieves it?
A Receive fixed, pay floating
B Pay fixed, receive floating
C Buy a floating-rate note
D Sell a fixed-rate bond
E Nothing in the swap market helps
Solution The borrower already PAYS floating on its debt. Entering a swap to RECEIVE floating offsets that exposure, and the swap's fixed leg becomes the borrower's net obligation. So the position needed is pay fixed, receive floating - a payer swap. The combination synthesises a fixed-rate loan without renegotiating the original debt. Trap. Choosing the receiver swap, which doubles the floating exposure rather than removing it.
All Interest rate swaps and derivatives questions
Want a fresh set every day? Today’s mixed round is free too. The per-topic drills and timed rounds are Premium .