Financial Mathematics
- Simple interest is linear (same interest each year); compound interest grows exponentially. If the question says just 'interest', assume compound.
- Compounding period matters: for k periods per year at nominal rate r%, use
. - Effective annual rate is what actually gets paid over one year:
, expressed as a %.
Q: €2000 at 6% p.a. compounded monthly for 5 years — value at end?
A: FV = 2000(1 + 0.06/12)^60 = 2000 × 1.005^60 ≈ €2697.70.
Q: Effective annual rate for 8% p.a. compounded quarterly?
A: (1.02)^4 − 1 = 0.0824 → 8.24%.
Voronoi Diagrams
- A Voronoi diagram partitions the plane so every point belongs to the region of its nearest 'site' (marked point).
- The boundary between two adjacent regions is the perpendicular bisector of the segment joining those two sites.
- Toxic waste dump problem: the optimal location is a vertex of the Voronoi diagram — the point *furthest* from all sites. Check every vertex; the answer is the one whose distance to its 3 nearest sites is largest.
Q: Given sites at (0,0), (6,0), (3,4) — which point is equidistant from all three (circumcentre)?
A: Circumcentre is the Voronoi vertex — solve the perpendicular-bisector equations pairwise. Here: (3, 5/6) ≈ (3, 0.833).
Chi-squared test
- Use χ² for categorical data — testing whether observed frequencies match expected.
- Test statistic:
. Degrees of freedom = (rows − 1) × (cols − 1) for contingency tables. - If your GDC gives p < significance level → reject H₀ (there is an association). If χ²_calc > χ²_crit → same conclusion.
Q: 2×3 table, χ²_calc = 8.2, 5% significance. Critical value χ²_crit(df=2, 0.05) = 5.99.
A: 8.2 > 5.99, so reject H₀ at the 5% level: there is significant association between the variables.
Approximation and error bounds
- When determining upper and lower bounds for a calculated value, ensure you consider the maximum and minimum possible values for each input based on its stated precision. Think carefully about how these extremes combine in your calculations.
- A common pitfall is forgetting the rules for setting bounds. If a value is given as
to the nearest , its range is . If it's given to 2 significant figures, say , its range is . Do not round intermediate calculations; only apply appropriate rounding for the final upper and lower bounds if specifically instructed. - Be mindful of how operations affect bounds. For addition,
. For subtraction, . For multiplication (with positive values), . Similar rules apply for upper bounds and division.
Q: A rectangle has length
A: Lower bound for
Linear regression on the GDC
- Always ensure your GDC is set to the correct mode (e.g., 'Diagnostics On' for
and ) and that all data points are entered accurately into lists. Even a single data entry error can lead to a completely incorrect regression equation and subsequent analysis. - A common pitfall is incorrectly identifying the independent (x) and dependent (y) variables in context. Swapping them will give an inverse relationship, drastically altering your regression equation and the meaning of any predictions.
- When asked for the regression equation, ensure you state it in the exact form requested (e.g.,
or ) and use the original variable names from the problem (e.g., if 'Cost' and 'Temperature' are given). Avoid premature rounding; use values from your GDC to at least 3 significant figures.
Q: The GDC output for a linear regression is
A:
Q: For data showing a strong negative linear correlation, what would be a likely value for the correlation coefficient,
A:
Compound interest with sinking funds
- Crucial Calculator Settings: Always verify your financial calculator (or GDC's TVM solver) has P/Y (payments per year) and C/Y (compounding periods per year) correctly set based on the question. A frequent error is defaulting both to 12 when they should be different (e.g., quarterly payments, monthly compounding).
- Sinking Funds = Future Value: Sinking fund questions are fundamentally about accumulating a specific future lump sum through periodic payments. You will typically be solving for the payment (PMT) given a known Future Value (FV), rather than a Present Value (PV).
- Identify All Variables: Before jumping into calculations, clearly list your N, I%, PV, PMT, FV, P/Y, and C/Y values. Ensure consistent signs for PV/PMT/FV; for a sinking fund, the FV is usually positive (target amount), and PMT will be negative (outflow).
Q: A company needs to accumulate $$500,000
A: Using a TVM solver with
IB Math Revision