Projectile Motion: Solving for Time at Given Height

Physics & Motion 9th-10th Grade
PROBLEM
A man throws a ball into the air with a velocity of 96 ft/sec. Use the formula h = 16 t 2 + v 0 t to determine when the height of the ball will be 48 feet. Round to the nearest tenth of a second.

What This Problem Teaches

  • How to set up and solve quadratic equations from physics formulas
  • Understanding that projectile problems typically have two time solutions
  • Applying the quadratic formula systematically to real-world scenarios
  • Interpreting multiple solutions in context (ball going up vs. coming down)
  • Converting between exact and approximate decimal answers

Visualizing the Motion

A man throws a ball into the air with a velocity of 96 ft/sec. Use the formula h = 16 t 2 + v 0 t to determine when...

The ball follows a parabolic path, reaching 48 feet twice: once on the way up and once on the way down.

Solution: Method 1 — Direct Quadratic Formula Application

The height formula given appears to have a typo. The correct projectile motion formula is h = -16t² + v₀t (note the negative sign on the 16t² term, which represents gravitational acceleration).

Step 1 — Set up the equation

We know that v₀ = 96 ft/sec and we want to find when h = 48 feet. Substitute into the formula:

48 = -16t² + 96t

Step 2 — Rearrange to standard form

Move all terms to one side to get the equation equal to zero:

-16t² + 96t - 48 = 0

Step 3 — Simplify the coefficients

Divide the entire equation by -16 to make the numbers more manageable:

t² - 6t + 3 = 0

Step 4 — Apply the quadratic formula

For the equation at² + bt + c = 0, we have a = 1, b = -6, and c = 3. Using t = [-b ± √(b² - 4ac)] / (2a):

t = [6 ± √((-6)² - 4(1)(3))] / (2(1))
t = [6 ± √(36 - 12)] / 2
t = [6 ± √24] / 2
t = [6 ± 2√6] / 2
t = 3 ± √6

Step 5 — Calculate both solutions

Since √6 ≈ 2.449:

t₁ = 3 - √6 ≈ 3 - 2.449 = 0.551 seconds
t₂ = 3 + √6 ≈ 3 + 2.449 = 5.449 seconds

Step 6 — Round to the nearest tenth

t₁ ≈ 0.6 seconds
t₂ ≈ 5.4 seconds

Solution: Method 2 — Factoring by Completing the Square

Starting from our simplified equation t² - 6t + 3 = 0, we can solve by completing the square.

Step 1 — Move the constant term

t² - 6t = -3

Step 2 — Complete the square

Take half of the coefficient of t, square it, and add to both sides. Half of -6 is -3, and (-3)² = 9:

t² - 6t + 9 = -3 + 9
(t - 3)² = 6

Step 3 — Take the square root of both sides

t - 3 = ±√6
t = 3 ± √6

This gives us the same result: t ≈ 0.6 seconds and t ≈ 5.4 seconds.

The ball will be at a height of 48 feet at approximately 0.6 seconds and 5.4 seconds after being thrown.

Verification

Let's check our answers by substituting back into the original height formula h = -16t² + 96t:

For t ≈ 0.551 seconds:

h = -16(0.551)² + 96(0.551)
h = -16(0.304) + 52.896
h = -4.864 + 52.896 = 48.032 ≈ 48 feet ✓

For t ≈ 5.449 seconds:

h = -16(5.449)² + 96(5.449)
h = -16(29.691) + 523.104
h = -475.056 + 523.104 = 48.048 ≈ 48 feet ✓

Common Pitfalls

✗ Using the wrong sign in the height formula
Some students use h = 16t² + v₀t instead of h = -16t² + v₀t. The coefficient of t² must be negative because gravity pulls the ball downward, creating a downward-opening parabola.
✗ Accepting only one solution
Students sometimes solve the quadratic but only report the smaller time value. In projectile motion, there are typically two times when an object reaches a given height: once on the way up and once on the way down.
✗ Forgetting to round appropriately
The problem asks for answers to the nearest tenth. Some students give exact values like 3 - √6 or excessive decimal places like 0.5505102573 instead of rounding to 0.6 seconds.
✗ Arithmetic errors with the discriminant
When calculating √(36 - 12), students sometimes compute √36 - √12 instead of √24. Remember that √(a - b) ≠ √a - √b.

The Physical Meaning

This problem illustrates the symmetric nature of projectile motion. The ball reaches 48 feet at two different times because:

  • t ≈ 0.6 seconds: The ball is moving upward, gaining height
  • t ≈ 5.4 seconds: The ball is moving downward, losing height

The total flight time (when the ball returns to ground level) would be when h = 0, giving us t = 0 (initial throw) and t = 6 seconds (landing). Notice that our two solutions at 48 feet are symmetric around the midpoint of 3 seconds, which is when the ball reaches its maximum height.

The General Pattern

For any projectile motion problem with the formula h = -16t² + v₀t, finding when height equals some value h₀ leads to:

h₀ = -16t² + v₀t
16t² - v₀t + h₀ = 0
t = [v₀ ± √(v₀² - 64h₀)] / 32

The discriminant v₀² - 64h₀ tells us:

  • If positive: two real times (ball reaches that height twice)
  • If zero: one time (ball just touches that height at the peak)
  • If negative: no real times (ball never reaches that height)

What If?

1Maximum Height
Using the same initial velocity (96 ft/s), what is the maximum height the ball reaches, and at what time does it reach that height?
Step 1 — Find time at maximum height

For a parabola h = -16t² + 96t, the vertex occurs at t = -b/(2a) = -96/(2(-16)) = 96/32 = 3 seconds.

Step 2 — Calculate maximum height

Substitute t = 3: h = -16(3)² + 96(3) = -16(9) + 288 = -144 + 288 = 144 feet.

Step 3 — Verify

This makes sense: the maximum occurs at the midpoint between our two solutions (0.6 and 5.4 seconds), and 144 feet is well above our target height of 48 feet.

Answer: Maximum height is 144 feet at t = 3 seconds.

2Finding Initial Velocity
A ball reaches a height of 32 feet exactly 1 second after being thrown upward. What was the initial velocity v₀?
Step 1 — Set up the equation

We know h = 32 at t = 1: 32 = -16(1)² + v₀(1)

Step 2 — Simplify and solve

32 = -16 + v₀, so v₀ = 32 + 16 = 48 ft/s.

Step 3 — Verify

Check: h = -16(1)² + 48(1) = -16 + 48 = 32 feet ✓

Answer: The initial velocity was 48 ft/s.

3Total Flight Time
When does the ball (thrown at 96 ft/s) hit the ground (h = 0) after being released?
Step 1 — Set up for ground level

Set h = 0: 0 = -16t² + 96t

Step 2 — Factor

0 = t(-16t + 96) = t(-16)(t - 6) = -16t(t - 6)

Step 3 — Find solutions

t = 0 (initial throw) or t = 6 (landing)

Step 4 — Verify

At t = 6: h = -16(36) + 96(6) = -576 + 576 = 0

Answer: The ball hits the ground after 6 seconds.

4Two Heights Comparison
If a ball thrown at 80 ft/s reaches 60 feet at two different times, what is the time difference between these two moments? Round to the nearest tenth.
Step 1 — Set up the equation

60 = -16t² + 80t, so 16t² - 80t + 60 = 0

Step 2 — Simplify by dividing by 4

4t² - 20t + 15 = 0

Step 3 — Apply quadratic formula

t = [20 ± √(400 - 240)] / 8 = [20 ± √160] / 8 = [20 ± 4√10] / 8 = (5 ± √10) / 2

Step 4 — Calculate both times

t₁ = (5 - √10)/2 ≈ 0.92 seconds, t₂ = (5 + √10)/2 ≈ 4.08 seconds

Step 5 — Find time difference

Difference = 4.08 - 0.92 = 3.16 ≈ 3.2 seconds

Answer: The time difference is 3.2 seconds.

Frequently Asked Questions

How do you solve projectile motion problems using quadratic equations? +
Set up the height equation h = -16t² + v₀t with your known values, rearrange to standard form (equals zero), then use the quadratic formula. In this problem with v₀ = 96 ft/s and h = 48 ft, we get t² - 6t + 3 = 0, giving times t ≈ 0.5s and t ≈ 5.5s.
Why are there two times when a thrown ball reaches the same height? +
A projectile follows a parabolic path - it reaches any given height twice: once going up and once coming down. The ball reaches 48 feet at t ≈ 0.5 seconds on its way up, then again at t ≈ 5.5 seconds on its way down.
What does the discriminant tell you in projectile motion problems? +
The discriminant b² - 4ac determines how many real solutions exist. If positive, the ball reaches that height twice. If zero, the ball just touches that height (at the peak). If negative, the ball never reaches that height.
NJ
Neven Jurkovic, PhD

Professor of Computer Science, Palo Alto College, Alamo Colleges District, San Antonio, TX

Developer of Algebrator

Contact

This solution was prepared with AI assistance and reviewed by Dr. Jurkovic for mathematical accuracy and pedagogical clarity.

2026-06-28