⏱ 75 minutes60 marksprintable — key stays hidden on paper
Time limit: 75 minutes
Total marks: 60
Instructions: Answer all three questions. Show full working, justify each step, and use exact values where possible. Calculators permitted for numerical checks only.
(a) Starting from the sum formulas cos(A±B)=cosAcosB∓sinAsinB, prove the double-angle identity in all three forms:
cos2A=cos2A−sin2A=2cos2A−1=1−2sin2A.
State clearly which Pythagorean identity is used at each transition. (4)
(b) Hence derive the half-angle formula for sin2(2θ) and use it to find the exact value of sin15∘ (leave your answer in simplest surd form). (5)
(c) Solve, for 0≤x<2π, the equation
2cos2x+4sinx=1.
Give all solutions exactly in radians. (6)
(d) Prove the identity
sinθsin3θ−cosθcos3θ=2.
State the domain restrictions on θ. (5)
A particle's displacement (in cm) from equilibrium is modelled by
x(t)=3sin(2t)+4cos(2t),t≥0 (seconds).
(a) Express x(t) in the single form Rsin(2t+ϕ), where R>0 and −π<ϕ≤π. Give R exactly and ϕ to 3 decimal places. (4)
(b) State the amplitude, period, and the first time t>0 at which the particle reaches maximum displacement. (4)
(c) The particle's velocity is v(t)=dtdx. Using your Part (a) form, write v(t) as a single sinusoid and hence find the maximum speed. (4)
(d) A second particle has displacement y(t)=5sin(2t+3π). Using a product-to-sum identity, express the product xunit(t)⋅y(t) where xunit(t)=sin(2t+ϕ) (using ϕ from Part (a)) as a sum of two sinusoids. Identify their frequencies. (4)
(e) Write a short piece of pseudocode (or Python) that numerically estimates, on 0≤t≤π, the first time both particles have equal displacement x(t)=y(t), describing the algorithm (e.g. sign-change bisection) rather than relying on a symbolic solver. Then give the exact solution set of x(t)=y(t) on this interval by reducing to a single trig equation. (6)
A surveyor measures a triangular plot ABC. She records side a=BC=8 m, side b=CA=5 m, and the angle A=40∘ (the angle at vertex A, opposite side a).
(a) Explain why this is the ambiguous (SSA) case. Using the Law of Sines, determine the number of possible triangles and find angle B (to 2 d.p.) for each. (5)
(b) For the valid triangle(s), find side c and the area using Area=21bcsinA. (4)
(c) Prove the Law of Cosines a2=b2+c2−2bccosA for an acute triangle by dropping a perpendicular from one vertex, clearly labelling your construction. (5)
(d) Starting from Area=21bcsinA and cosA=2bcb2+c2−a2, derive Heron's formulaArea=s(s−a)(s−b)(s−c), where s=21(a+b+c). (4)
(a) (4 marks)
From cos(A+B)=cosAcosB−sinAsinB, set B=A:
cos2A=cosAcosA−sinAsinA=cos2A−sin2A.(1)
Using sin2A=1−cos2A:
cos2A=cos2A−(1−cos2A)=2cos2A−1.(1)
Using cos2A=1−sin2A:
cos2A=(1−sin2A)−sin2A=1−2sin2A.(1)
Correct citation of Pythagorean identity sin2+cos2=1 at each step (1).
(b) (5 marks)
From cos2A=1−2sin2A, put A=θ/2: cosθ=1−2sin2(θ/2), so
sin2(2θ)=21−cosθ.(2)
Set θ=30∘ so θ/2=15∘, with cos30∘=23:
sin215∘=21−23=42−3.(1)
Since 15∘ is in Q1, sin15∘>0:
sin15∘=22−3=46−2.(2)
(Equivalence 2−3=26−2 shown by squaring: 46+2−212=48−43=2−3.)
(c) (6 marks)
Use cos2x=1−2sin2x:
2(1−2sin2x)+4sinx=1⇒−4sin2x+4sinx+1=1.(2)
So −4sin2x+4sinx=0⇒4sinx(1−sinx)=0. (1)
Thus sinx=0 or sinx=1. (1)
sinx=0: x=0,π.
sinx=1: x=2π.
Solutions in [0,2π): x=0,2π,π. (2)
(d) (5 marks)
Combine over common denominator sinθcosθ:
sinθcosθsin3θcosθ−cos3θsinθ.(1)
Numerator is sin(3θ−θ)=sin2θ (difference formula). (2)=sinθcosθsin2θ=sinθcosθ2sinθcosθ=2.(1)
Domain: sinθ=0 and cosθ=0, i.e. θ=2nπ,n∈Z. (1)
(a) (4 marks)R=32+42=5(1). Match Rsin(2t+ϕ)=Rcosϕsin2t+Rsinϕcos2t with 3sin2t+4cos2t:
Rcosϕ=3,Rsinϕ=4(1). So tanϕ=4/3, both positive ⇒ ϕ in Q1 (1):
ϕ=arctan(4/3)≈0.927 rad.(1)
Thus x(t)=5sin(2t+0.927).
(b) (4 marks)
Amplitude =5 cm (1). Period =22π=π s (1).
Max when 2t+ϕ=2π ⇒ t=2π/2−0.927≈21.5708−0.9273≈0.322 s (2).
(c) (4 marks)v(t)=dtd[5sin(2t+ϕ)]=10cos(2t+ϕ)(2), which is 10sin(2t+ϕ+2π). Max speed =10 cm/s (2).
(d) (4 marks)sin(2t+ϕ)⋅5sin(2t+3π). Product-to-sum:
sinPsinQ=21[cos(P−Q)−cos(P+Q)](1).
With P=2t+ϕ,Q=2t+3π:
=25[cos(ϕ−3π)−cos(4t+ϕ+3π)].(2)
First term constant (frequency 0); second term oscillates at angular frequency 4 rad/s (i.e. double the original). (1)
(e) (6 marks)
Reduce x(t)=y(t): 5sin(2t+ϕ)=5sin(2t+3π) ⇒ sin(2t+ϕ)=sin(2t+3π)(1).
Two cases: (i) 2t+ϕ=2t+3π+2kπ ⇒ ϕ=3π, false (no solutions this way);
(ii) 2t+ϕ=π−(2t+3π)+2kπ ⇒ 4t=π−3π−ϕ+2kπ=32π−ϕ+2kπ(2).
t=42π/3−ϕ+2kπ. With ϕ≈0.927: t≈42.094−0.927≈0.292 s (k=0); next k=1 gives t≈1.862 s (outside [0,π] if π≈3.14? actually 1.862<π, included). So on [0,π]: t≈0.292,1.862 s. First is 0.292 s (1).
Pseudocode (bisection sign-change) (2):
def f(t): return x(t) - y(t) # continuoust, dt, prev = 0, 0.001, f(0)while t <= pi: cur = f(t+dt) if prev*cur < 0: # sign change ⇒ root bracketed # bisection between t and t+dt a,b = t, t+dt for _ in range(50): m=(a+b)/2 if f(a)*f(m)<=0: b=m else: a=m print("root ~", (a+b)/2); break prev=cur; t+=dt
(a) (5 marks)
SSA data (two sides + non-included angle) ⇒ ambiguous case (1).
Law of Sines: bsinB=asinA ⇒ sinB=absinA=85sin40∘=85(0.64279)=0.40174(2).
Since a>b, angle A opposite larger side ⇒ only one triangle (the obtuse alternative B′ would give A+B′>180∘? check: B1=23.69∘, B2=156.31∘; A+B2=196∘>180∘ invalid) (1).
Unique: B≈23.69∘(1).
(b) (4 marks)C=180∘−40∘−23.69∘=116.31∘(1).
c=sinAasinC=sin40∘8sin116.31∘=0.642798(0.89649)≈11.16 m (2).
Area =21bcsinA=21(5)(11.16)sin40∘≈21(5)(11.16)(0.64279)≈17.93 m² (1).
(c) (5 marks)
Drop perpendicular from B to line CA, foot H, length h. Then BH=h=csinA and AH=ccosA, so CH=b−ccosA(2). In right triangle BHC:
a2=h2+CH2=(csinA)2+(b−ccosA)2.(1)
Expand: c2sin2A+b2−2bccosA+c2cos2A=b2+c2(sin2A+cos2A)−2bccosA(1)=b2+c2−2bccosA.(1)
(d) (4 marks)Area2=41b2c2sin2A=41b2c2(1−cos2A)(1). Substitute cosA=2bcb2+c2−a2:
=41b2c2[1−(2bcb2+c2−a2)2]=161[(2bc)2−(b2+c2−a2)2].(1)
Difference of squares:
=161(2bc+b2+c2−a2)(2bc−b2−c2+a2)=161[(b+c)2−a2][a2−(b−c)2].
Each bracket factors, giving (b+c+a)(b+c−a)(a+b−c)(a−b+c). With s=21(a+b+c) these equal 2s⋅2(s−a)⋅2(s−c)⋅2(s−b)(1):
Area2=161⋅16s(s−a)(s−b)(s−c)=s(s−a)(s−b)(s−c).Area=s(s−a)(s−b)(s−c).(1)
[ {"claim":"sin15 = (sqrt6-sqrt2)/4 equals sqrt((2-sqrt3)/... ) numeric", "code":"lhs=(sqrt(6)-sqrt(2))/4; rhs=sqrt((1-sqrt(3)/2)/2); result=simplify(lhs-rhs)==0"}, {"claim":"Q1c solutions satisfy 2cos2x+4sinx=1", "code":"xs=[0,pi/2,pi]; result=all(simplify(2*cos(2*x)+4*sin(x)-1)==0 for x in x