This page is a drill . The parent note built the machinery; here we throw every kind of ball at it. The plan: first map out all the case classes a projectile problem can be, then solve one example per case so you never meet a scenario you haven't seen.
Intuition The two tools we lean on the whole way
Everything below is squeezed out of the two master equations:
x ( t ) = u cos θ t y ( t ) = u sin θ t − 2 1 g t 2
u is the launch speed (how fast, one number), θ is the launch angle above the flat ground, g = 10 m/s 2 unless said otherwise. cos θ is the "shadow" of the velocity arrow on the ground (horizontal share); sin θ is its shadow up the wall (vertical share). See Vectors — Resolving into Components .
Definition The three numbers every problem asks for
Flight time T — the total number of seconds the projectile is airborne, from launch to landing. It is the clock reading when y returns to the landing height.
Maximum height H — the greatest height above launch level the projectile reaches, measured at the instant its vertical velocity v y = 0 (the top of the arc).
Range R — the horizontal distance from the launch point to the landing point, measured along the ground.
These are just special readings of the master equations: T and H come from the vertical equation, R from the horizontal one after we know T .
Every projectile problem is one of these cells . Each row is a way the setup can differ; the examples that follow are tagged with the cell they cover.
Cell
What makes it special
Danger it hides
Example
A Level launch, generic θ
launch height = landing height
none — plug into T , H , R
Ex 1
B θ = 0 (horizontal throw)
u y = 0 from the start
can't use R = u 2 sin 2 θ / g
Ex 2
C θ = 9 0 ∘ (straight up)
u x = 0 , range is zero
it's really 1-D
Ex 3
D Landing below launch (cliff)
y final < 0
naive T , R formulas fail
Ex 4
E Landing above launch (onto a wall/roof)
y final > 0
two candidate times
Ex 5
F Complementary angles
θ and 9 0 ∘ − θ
same range, different T , H
Ex 6
G Velocity/direction during flight
need v x , v y at time t
sign of v y flips at the top
Ex 7
H Real-world word problem
hidden numbers, unit traps
reading, not physics
Ex 8
I Exam twist — solve for θ
given R , find angle
sin gives two answers
Ex 9
J Degenerate / limit check
u = 0 , g → large, θ → 0
formulas must stay sane
Ex 10
Worked example Example 1 — the vanilla case
A ball leaves the ground at u = 20 m/s , θ = 3 0 ∘ , g = 10 m/s 2 . Find flight time T , max height H , range R , and the speed at landing.
Forecast: guess before computing — will the landing speed be more, less, or equal to 20 m/s ?
Split the launch velocity. u x = 20 cos 3 0 ∘ = 20 ( 0.866 ) = 17.32 m/s , u y = 20 sin 3 0 ∘ = 20 ( 0.5 ) = 10 m/s .
Why this step? The two axes are independent; we must feed each its own starting speed.
Flight time T = g 2 u y = 10 2 ( 10 ) = 2 s .
Why this step? The ball returns to y = 0 when vertical motion completes its up-and-down; only u y decides this.
Max height H = 2 g u y 2 = 20 100 = 5 m .
Why this step? At the top v y = 0 ; energy/kinematics of the vertical piece alone give H .
Range R = u x T = 17.32 ( 2 ) = 34.64 m .
Why this step? Horizontal speed is constant, so distance = speed × total time.
Landing speed. By symmetry v x = 17.32 , v y = − 10 (same magnitude, now downward). Speed = 17.3 2 2 + 1 0 2 = 300 + 100 = 20 m/s .
Verify: landing speed equals launch speed 20 m/s — correct, because on level ground gravity gives back exactly the kinetic energy it took. Forecast answer: equal . Units: m/s ✓.
Worked example Example 2 — drop vs shoot
A stone is thrown horizontally at u = 15 m/s from a 20 m cliff. When and where does it land? Compare to a stone simply dropped.
Forecast: does the thrown stone hit the ground before the dropped one, because it "has more going on"?
Resolve. θ = 0 ⇒ u x = 15 , u y = 0 .
Why this step? A flat throw pours all its speed into horizontal; vertical starts from rest.
Vertical fall. Take down as positive here: 20 = 2 1 ( 10 ) t 2 ⇒ t 2 = 4 ⇒ t = 2 s .
Why this step? Vertically the stone is a pure free-fall object; horizontal speed is irrelevant to falling.
Horizontal distance. x = u x t = 15 ( 2 ) = 30 m .
Why this step? Constant horizontal velocity across the shared clock t .
Dropped stone. 20 = 2 1 ( 10 ) t 2 ⇒ t = 2 s — identical .
Why this step? The dropped stone also has u y = 0 and falls the same 20 m under the same g ; its vertical equation is byte-for-byte the same as the thrown stone's, so it must give the same t . This is the visible proof of independence.
Verify: both take 2 s ; the horizontal throw does not change fall time — this is the whole point of independence. Forecast answer: no, they hit together . Units ✓.
Worked example Example 3 — the degenerate vertical shot
A ball is fired straight up at u = 30 m/s . Find T , H , and R .
Forecast: what should the range be for a purely vertical shot?
Resolve. cos 9 0 ∘ = 0 ⇒ u x = 0 ; sin 9 0 ∘ = 1 ⇒ u y = 30 .
Why this step? All the speed goes upward; nothing sideways.
Flight time T = 10 2 ( 30 ) = 6 s .
Why this step? The ball rises, stops, and falls back to its launch height; the up-and-down of the vertical motion sets the airborne time, so T = 2 u y / g still applies.
Max height H = 2 ( 10 ) 3 0 2 = 20 900 = 45 m .
Range R = u x T = 0 ( 6 ) = 0 m .
Why this step? No horizontal speed ⇒ it comes back to the launch point. This is really a 1-D problem in disguise.
Verify: R = 0 — the "projectile" formulas gracefully collapse to the straight-up case. Forecast answer: zero . Units ✓.
Worked example Example 4 — launch off a cliff at an angle
From the top of a 25 m cliff, a ball is thrown at u = 20 m/s , θ = 3 0 ∘ above horizontal. How long is it in the air, and how far from the cliff base does it land?
Forecast: will the flight time be more or less than the level-ground T = 2 s from Example 1?
The figure below shows the setup: the ball launches from the cliff top, arcs up past launch level, then keeps falling the extra 25 m to the base. Notice the red arc extends below the dashed launch line — that extra fall is exactly why the naive T formula is wrong here.
Resolve. u x = 20 cos 3 0 ∘ = 17.32 , u y = 20 sin 3 0 ∘ = 10 .
Set the vertical equation to the true landing height. The base of the cliff is 25 m below launch, so y = − 25 :
− 25 = 10 t − 2 1 ( 10 ) t 2 ⇒ 5 t 2 − 10 t − 25 = 0 ⇒ t 2 − 2 t − 5 = 0.
Why this step? The T = 2 u sin θ / g formula assumes landing at launch height — here it doesn't, so we go back to the raw y ( t ) equation.
Solve the quadratic. t = 2 2 ± 4 + 20 = 1 ± 6 . Positive root: t = 1 + 2.449 = 3.449 s .
Why this step? Only the positive time is physical (the negative root is the parabola's "past").
Horizontal distance. x = u x t = 17.32 ( 3.449 ) = 59.73 m .
Why this step? Now that the vertical motion has told us when it lands, the horizontal position at that instant is just constant speed × that time — the shared clock t links the two axes.
Verify: the ball spends longer aloft (3.45 s > 2 s ) because it keeps falling past the launch level — matches the figure's extended red arc. Forecast answer: more . Units ✓.
Worked example Example 5 — clearing a wall (two candidate times)
A ball is launched from the ground at u = 25 m/s , θ = 5 3 ∘ (sin 5 3 ∘ = 0.8 , cos 5 3 ∘ = 0.6 ). A wall of height 15 m stands somewhere ahead. At what times is the ball at height 15 m ?
Forecast: how many distinct times can a projectile be at a given height below its peak?
Resolve. u x = 25 ( 0.6 ) = 15 , u y = 25 ( 0.8 ) = 20 .
Set y = 15 . 15 = 20 t − 5 t 2 ⇒ 5 t 2 − 20 t + 15 = 0 ⇒ t 2 − 4 t + 3 = 0 .
Why this step? We want every instant the ball is at that height, so solve the full quadratic — not just one root.
Factor. ( t − 1 ) ( t − 3 ) = 0 ⇒ t = 1 s (going up) and t = 3 s (coming down).
Why this step? A projectile passes each sub-peak height twice — once rising, once falling. The two roots are both real and physical.
Peak check. Max height H = 2 g u y 2 = 2 ( 10 ) 2 0 2 = 20 m > 15 m , so 15 m really is reachable.
Why this step? If the wall were taller than H the quadratic would have no real roots (the ball never gets there); computing H confirms our two times are genuine, not algebraic ghosts.
Verify: the two times are symmetric about t top = g u y = 2 s ; indeed 2 1 + 3 = 2 ✓. Forecast answer: two (if below peak). Units ✓.
Worked example Example 6 — same range, different everything else
A cannon fires at u = 40 m/s , once at θ = 3 0 ∘ and once at θ = 6 0 ∘ . Compare R , T , and H .
Forecast: which of the three quantities are equal for the two shots?
The figure overlays both arcs. Notice they meet again at the same landing point on the ground (equal range, yellow line) even though the 6 0 ∘ arc towers far above the 3 0 ∘ one — a striking picture of "same R , different H ".
Ranges. R = g u 2 sin 2 θ . For 3 0 ∘ : sin 6 0 ∘ = 0.866 , R = 10 1600 ( 0.866 ) = 138.6 m . For 6 0 ∘ : sin 12 0 ∘ = 0.866 , same R = 138.6 m .
Why this step? sin 2 θ = sin ( 18 0 ∘ − 2 θ ) , so complementary angles share sin 2 θ — equal range.
Times. T = g 2 u sin θ . 3 0 ∘ : T = 10 2 ( 40 ) ( 0.5 ) = 4 s . 6 0 ∘ : T = 10 2 ( 40 ) ( 0.866 ) = 6.93 s .
Why this step? T ∝ sin θ , and sin 6 0 ∘ > sin 3 0 ∘ — the steeper shot lingers.
Heights. H = 2 g u 2 sin 2 θ . 3 0 ∘ : 20 1600 ( 0.25 ) = 20 m . 6 0 ∘ : 20 1600 ( 0.75 ) = 60 m .
Why this step? H = 2 g u y 2 with u y = u sin θ gives H = 2 g u 2 sin 2 θ ; since H depends on sin 2 θ , the steeper 6 0 ∘ shot (bigger sin θ ) climbs far higher.
Verify: ranges equal (138.6 m each) ✓; the 6 0 ∘ shot flies 3× higher and stays up longer — see the tall vs flat arcs. Forecast answer: only range is equal. Units ✓.
Worked example Example 7 — speed and direction mid-flight
For the Example 1 ball (u x = 17.32 , u y = 10 , g = 10 ), find the velocity vector at t = 1.5 s : its components, speed, and the angle it makes with the horizontal.
Forecast: at t = 1.5 s (after the t = 1 s peak) is the ball moving up or down?
Horizontal velocity. v x = u x = 17.32 m/s (constant, unchanged).
Why this step? a x = 0 ; horizontal speed never varies — the classic trap.
Vertical velocity. v y = u y − g t = 10 − 10 ( 1.5 ) = − 5 m/s .
Why this step? Negative means downward — the ball is past its peak (peak was at t = 1 s ).
Speed. ∣ v ∣ = v x 2 + v y 2 = 17.3 2 2 + 5 2 = 300 + 25 = 325 = 18.03 m/s .
Why this step? The velocity is a vector; its two perpendicular components form the legs of a right triangle, so the actual speed is the hypotenuse (Pythagoras) — you cannot just add v x and v y .
Direction below horizontal. α = arctan v x ∣ v y ∣ = arctan 17.32 5 = 16. 1 ∘ below horizontal.
Why this step? The velocity vector's angle is opposite/adjacent on the right triangle its components form; arctan asks "which angle has this tangent?" See Vectors — Resolving into Components .
Verify: v y < 0 confirms descent; speed 18.03 < 20 m/s (launch) because it isn't back to launch height yet. Forecast answer: down . Units ✓.
Worked example Example 8 — the water fountain
A garden fountain shoots water at u = 14 m/s , θ = 4 5 ∘ . The gardener wants a circular pool that just catches all the water. What minimum pool radius (measured from the nozzle) is needed? (g = 9.8 m/s 2 .)
Forecast: does the largest splash land at 4 5 ∘ or would a different angle reach farther?
Identify the hidden ask. "Just catches all the water" = the range of the jet.
Why this step? Word problems bury the physics quantity in plain language; range is what "how far it lands" means.
Use the range formula. R = g u 2 sin 2 θ = 9.8 1 4 2 sin 9 0 ∘ = 9.8 196 ( 1 ) = 20 m .
Why this step? Level ground (nozzle and pool at same height) ⇒ the standard R applies, and θ = 4 5 ∘ makes sin 2 θ = 1 .
Answer. Radius = 20 m .
Verify: 4 5 ∘ is the max-range angle, so this is also the worst case radius — smaller angles land nearer. Units: m/s 2 ( m/s ) 2 = m ✓. Forecast answer: 4 5 ∘ is farthest .
Worked example Example 9 — given the range, find the launch angle
A ball thrown at u = 30 m/s lands 45 m away on level ground (g = 10 ). What launch angle(s) achieve this?
Forecast: how many launch angles can hit the same spot?
Set up the range equation for θ . 45 = 10 3 0 2 sin 2 θ = 90 sin 2 θ ⇒ sin 2 θ = 0.5 .
Why this step? We now know R and u ; the unknown is inside sin 2 θ , so isolate it.
Invert the sine. 2 θ = arcsin ( 0.5 ) = 3 0 ∘ or 2 θ = 18 0 ∘ − 3 0 ∘ = 15 0 ∘ .
Why this step? sin takes the same value at an angle and its supplement — that's the source of the two solutions.
Solve. θ = 1 5 ∘ or θ = 7 5 ∘ .
Why this step? These are complementary (1 5 ∘ + 7 5 ∘ = 9 0 ∘ ) — exactly the Cell F pattern.
Verify: plug θ = 1 5 ∘ : sin 3 0 ∘ = 0.5 , R = 90 ( 0.5 ) = 45 m ✓; same for 7 5 ∘ . Forecast answer: two (a low and a high shot). Units ✓.
Worked example Example 10 — sanity limits (does the maths stay honest?)
Test the formulas at three extremes and confirm they behave.
Forecast: should R grow or shrink if we crank up g ?
Zero speed, u = 0 . R = g 0 ⋅ sin 2 θ = 0 , H = 2 g 0 = 0 , T = g 0 = 0 .
Why this step? No launch ⇒ no motion; a well-behaved formula must return exactly zero for every quantity, and each does.
Angle → 0 . As θ → 0 , sin θ → 0 ⇒ T = g 2 u sin θ → 0 and H = 2 g u 2 sin 2 θ → 0 ; and R = g u 2 sin 2 θ → 0 too. On truly flat ground a horizontal throw from ground level has nowhere to rise, so it "lands instantly."
Why this step? This checks the boundary between Cell A (angled level launch) and Cell B (horizontal throw): on flat ground the horizontal case degenerates, which is exactly why Cell B needs a cliff to be interesting.
Stronger gravity, g → large. With u = 20 , θ = 4 5 ∘ : g = 10 ⇒ R = 10 400 ( 1 ) = 40 m ; g = 20 ⇒ R = 20 400 = 20 m .
Why this step? Doubling g halves the range — matches the intuition that a heavier-pulling planet yanks the ball down sooner, cutting the flight short.
Verify: all degenerate outputs are finite and non-negative; R shrinks as g grows (40 → 20 m ), and every u = 0 or θ → 0 output collapses to 0 as physics demands. Forecast answer: shrink . Units ✓.
Recall Which cell am I in?
Ball thrown flat off a rooftop → ::: Cell D (landing below launch — use full y ( t ) , not T = 2 u sin θ / g ).
"At what two times is it at height h ?" → ::: Cell E (quadratic, two roots symmetric about the peak time).
Given R and u , find θ → ::: Cell I (sin 2 θ gives two complementary angles).
Ball fired straight up → ::: Cell C (range zero, really 1-D).
Mnemonic The one habit that survives every cell
"Vertical decides when , horizontal decides where ." Solve the vertical equation for the landing time t (whatever the height), then feed that t into x = u x t .