Lesson 7: Quadratic Equations

“Not a lot of people know this, but I’m very good at mathematics. When I was an angry teenager, I used to sit in my room and do quadratic equations to calm myself down.” – Samantha Bond

“It’s not for nothing that advanced mathematics tend to be invented in hot countries. It’s because of the morphic resonance of all the camels who have that disdainful expression and famous curled lip as a natural result of an ability to do quadratic equations.” – Terry Pratchett

Introduction

Unlike the linear equations of the previous chapter, which involved variables raised only to the first power (like x), the equations we study in this lesson involve variables raised to the second power (think l7_1.png). We call these terms quadratic terms. Equations with such terms are called quadratic equations. They’re the next rung on our ladder toward understanding the mathematics that underpins theoretical physics.

Quadratic Equations

Now that we’ve set the stage, let’s get to the heart of the matter. What, exactly, is a quadratic equation? At its core, a quadratic equation is a mathematical statement that involves a variable raised to the second power. While a linear equation like

l7_2.png

(7.1)

describes a straight line, a quadratic equation opens the door to curves.

In its standard form a quadratic equation is written as

l7_3.png

(7.2)

Here, x is the variable we’re solving for, and the coefficients a, b, and c are constants or parameters that define the equation’s behavior.

The term l7_4.png is the quadratic term, giving the equation its second-degree status. The b x term is the linear term, and c is the constant term. For example, in the equation

l7_5.png

(7.3)

we have a = 3, b = -4, and c = 1. That little l7_6.png changes everything—it means we’re no longer dealing with a single, straight solution path but rather a pair of possibilities, as quadratics can have up to two solutions.

Why do quadratics matter in physics? Imagine a ball tossed into the air. Its height over time doesn’t follow a straight line—it rises, slows, and falls back down, tracing a parabolic arc. That motion is represented by a quadratic equation, where the height depends on time squared. Or consider a spring oscillating under a force that grows with distance squared—another quadratic relationship. These equations let us model systems with acceleration, curvature, and energy in ways linear equations simply can’t.

The solutions to a quadratic equation—called its roots—tell us where the parabola crosses the horizontal-axis (if it does at all). Sometimes there are two distinct roots, sometimes one (a perfect hit at the vertex), and sometimes none in the real number world (imagine a parabola that never dips below the axis). This variety makes quadratics both intriguing and powerful.

In the sections that follow, we’ll learn how to find these roots using techniques like factoring, completing the square, and the quadratic formula. But for now, let’s get comfortable with the idea that quadratic equations are our gateway to describing a universe that’s rarely flat or simple. They’re the mathematical language of arches, orbits, and motion—and they’re about to become your new best friend.

Terms and Definitions

Term/Definition 7.1 Quadratic equation: A mathematical equation where the highest power of the variable is 2; standard form l7_7.png.

Term/Definition 7.2 Quadratic term: The term with the variable raised to the second power (l7_8.png).

Term/Definition 7.3 Linear term: The term with the variable raised to the first power (b x).

Term/Definition 7.4 Constant term: The term with no variable (c).

Term/Definition 7.5 Roots (of a quadratic equation): The values of x that satisfy the equation; up to two real roots are possible.

Assumptions (the implicit beliefs the author relies on)

Assumption 7.1: The standard form l7_9.png fully captures the general quadratic equation.

Assumption 7.2: Quadratic equations can have zero, one, or two real roots.

Exercise 7.1: Begin with Term/Definition 7.1 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition and assumption.

Seeing a Quadratic Equation

Before we dive into the nuts and bolts of solving quadratic equations, let’s take a step back and see what they look like. In mathematics, a quadratic equation is a particular arrangement of symbols, we can call it a mathematical structure. It needs to have no other meaning than the symbols. In a real-world application, a quadratic equation isn’t just a string of symbols—it’s a shape, a story, and a key to understanding. Picture a ball soaring through the air, its path traces a curve called a parabola, and that curve comes from a quadratic equation. Let’s explore this visual side to get a feel for what we’re working with.

It is  not obvious, at first glance, that a quadratic equation, like l7_10.png, describes a parabola when you graph it. Here’s what that means. The coefficient a controls the direction and “steepness.” If a > 0, then the parabola opens upward (like a U); if a < 0, it opens downward (like an upside-down U). The coefficient b shifts the curve left or right and also can change its tilt. The factor c lifts or lowers the whole parabola—think of it as the starting height.

The graph’s shape tells us a lot. First, it shows us where it crosses the horizontal-axis (the roots), its highest or lowest point (the vertex), and how it behaves.

Imagine the equation,

l7_11.png

where (according to (7.2)) a = -1  (downward opening). b = 4, and c = 0.

If you plot this (or picture it), it starts at (0, 0), climbs to a peak, then drops back to zero. Where it hits y = 0 shows us the roots. Set

l7_12.png

as we will see from methods below, this has roots at x = 0 and x = 4—the curve begins and ends there, with a peak in between.

With the Wolfram Language from earlier lessons, we can visualize this.

l7_13.png

l7_14.gif

You’ll see a downward-opening parabola crossing the horizontal-axis at 0 and 4, peaking around x = 2. The vertex—the highest point—is key.

Seeing the parabola sets up everything. It allows us to find the roots, to see the vertex, and see the direction. That parabola isn’t just a graph—it’s a projectile’s arc.

Terms and Definitions

Term/Definition 7.6 Parabola: The graph of a quadratic equation; a U-shaped curve (opens up if a > 0, down if a < 0).

Term/Definition 7.7 Roots (of quadratic): The x-values where the equation equals zero (where parabola crosses x-axis); up to two real roots.

Term/Definition 7.8 Vertex: The highest or lowest point on the parabola (turning point); located at x = -b/(2a).

Term/Definition 7.9 Direction (of parabola): Opens upward (a > 0, minimum at vertex) or downward (a < 0, maximum at vertex).

Term/Definition 7.10 Plot (in WL): The command to graph a function or equation over a range (e.g., Plot[expression, {x, xmin, xmax}]).

Assumptions (the implicit beliefs the author relies on)

Assumption 7.3: Graphing quadratics reveals key features: roots (crossings), vertex (peak/trough), direction (up/down).

Assumption 7.4: The coefficient a determines direction and steepness; b shifts/tilts; c shifts vertically.

Assumption 7.5: Plotting a few points or using WL Plot reveals the full parabolic shape and behavior.

Principles

Principle 7.1: Quadratic equations produce parabolic graphs.

Principle 7.2: Standard form l7_15.png: The coefficient a controls direction (positive = up, negative = down) and steepness;  b shifts left/right and tilts;  
c shifts up/down (y-intercept).

Exercise 7.2: Begin with Term/Definition 7.6 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Exercise 7.3: Plot the following quadratic equations:
a) l7_16.png. Estimate the values of the roots and the vertex.
b) l7_17.png for x=-2 to x=2. Are there any real roots?
c) l7_18.png for x=-1 to x=5. Estimate the vertex.

Exercise 7.4: Plot both l7_19.png and l7_20.png for x=-3 to x=3. How does it change due to the linear term (2x)?

Exercise 7.5: Plot l7_21.png,l7_22.png, and l7_23.png for x=-2 to x=2. How does changing the coefficient alter the shape and direction?

The Number of Roots, the Discriminant, and the Vertex

When we examine a quadratic equation, whose general form is l7_24.png we ask how many roots does a quadratic equation have? This is where things get interesting. Quadratic equations can have zero, one, or two real roots, depending on the relationship between a, b, and c. To see why, imagine the graph of a quadratic—a parabola that curves through space. The roots are the points where this parabola crosses the horizontal-axis. Let’s break it down into the possible cases:

Two Real Roots: If the parabola crosses the horizontal-axis at two distinct points, the equation has two solutions. Take l7_25.png. Its roots are (as using the methods described below) x = 1 and x = 2, reflecting a parabola that soars above the horizontal axis and descends back down.

One Real Root: If the parabola just grazes the horizontal-axis at a single point (its vertex), there’s only one root. For example, l7_26.png has a single root at x = 1, where the parabola kisses the axis before curving away.

Zero Real Roots: If the parabola never touches the horizontal-axis—say, it opens upward and sits entirely above it—there are no real roots. Consider l7_27.png. Solving this gives only imaginary solutions (x = i or x = -i), but no real numbers work.

What decides this fate? The key lies in a quantity called the discriminant, defined as

l7_28.png

(7.4)

The discriminant acts like a crystal ball for the number of roots. If D > 0, there are two distinct real roots. If D = 0, there’s exactly one real root. And, if D < 0, there are no real roots at all (though complex roots exist, which we’ll touch on later).

For instance, in

l7_29.png

(7.5)

we calculate

l7_30.png

(7.6)

Since D > 0, we expect two roots (and indeed, we find x = 1 and x = 3). Compare this to

l7_31.png

(7.7)

where

l7_32.png

(7.8)

signaling that there are no real roots.

You can also calculate the vertex of (7.5),

l7_33.png

(7.9)

What does this tell us? We know that we have a parabola that opens downward (b=-4), has a maximum value of 2, and intersects the horizontal axis twice.

Terms and Definitions

Term/Definition 7.11 Two real roots: The case where the parabola crosses the horizontal axis at two distinct points.

Term/Definition 7.12 One real root: The case where the parabola touches the horizontal axis at exactly one point (the vertex).

Term/Definition 7.13 Zero real roots: The case where the parabola never crosses the horizontal axis (no real solutions; complex roots exist).

Term/Definition 7.14 Discriminant (symbol D): The quantity l7_34.png that determines the nature and number of real roots of a quadratic equation.

Assumptions (the implicit beliefs the author relies on)

Assumption 7.6: The number and nature of real roots are completely determined by the discriminant l7_35.png.

Assumption 7.7: The sign of a determines the parabola’s direction (upward for a > 0, downward for a < 0).

Assumption 7.8: The vertex formula x = -b / (2a) always locates the turning point correctly.

Assumption 7.9: Complex roots exist when D < 0 but are not considered “real” solutions in this context.

Principles

Principle 7.3: The discriminant l7_36.png determines the number of real roots:  D > 0 → two distinct real roots, D = 0 → exactly one real root (repeated root at vertex), and D < 0 → no real roots (two complex roots).

Principle 7.4: The parabola’s graph visually shows roots (crossings of x-axis) and vertex (peak or trough).

Principle 7.5: The vertex x-coordinate formula: l7_37.png; locates the axis of symmetry (the midpoint of the parabola).

Principle 7.6: Use discriminant to quickly predict root behavior before solving fully.

Principle 7.7: Graphing (or visualizing) quadratics reveals behavior that algebra alone may not show immediately.

Principle 7.8: Real roots exist when D 0; zero real roots mean the parabola never crosses the axis (no real solutions).

Exercise 7.6: Begin with Term/Definition 7.11 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Solution by Factoring

Now that we’ve explored the structure of quadratic equations and their roots, it’s time to roll up our sleeves and learn how to solve them. One of the most intuitive methods is factoring—breaking the equation into simpler pieces that reveal its solutions directly. This approach works best when the quadratic can be neatly split into factors, and it’s a great starting point before we tackle more complicated tools like the quadratic formula. Let’s dive in and see how it works.

A quadratic equation in standard form is

l7_38.png

(7.10)

The goal of factoring is to rewrite the left side as a product of two binomials—that, when multiplied, give us the original equation. If we can write it as

l7_39.png

(7.11)

then the solutions (or roots) come from setting each factor to zero

l7_40.png

(7.12)

or

l7_41.png

(7.13)

This relies on a key property, if the product of two numbers is zero, at least one of them must be zero.

Consider the equation

l7_42.png

(7.14)

Here, a = 1, b = -5, and c = 6. We need two numbers that multiply to 6 (the constant term, c) and add to -5 (the coefficient of x, b). Let’s test some pairs, 1·6 = 6, but 1 + 6 = 7 (too big). Try 2 · 3 = 6, and 2 + 3 = 5  (close, but we need -5). Try -2 · -3 = 6, and -2 + -3 = -5  (perfect!). So, we factor the equation as,

l7_43.png

(7.15)

We now check it by expanding

l7_44.png

(7.16)

this matches our original. Now, set each factor to zero,

l7_45.png

(7.17)

and,

l7_46.png

(7.18)

So, the roots are x = 2 and x = 3. To verify, plug them back in to (7.15). For x = 2,

l7_47.png

(7.19)

For x = 3,

l7_48.png

(7.20)

Both check out!

Let’s try another,

l7_49.png

(7.21)

Here, a = 2, b = 7, and c = -4. Since a1, it’s trickier—we need numbers that multiply to

l7_50.png

(7.22)

and add to b = 7. Let’s test some pairs,

l7_51.png

(7.23)

and 8 + (-1) = 7, so this works!

We rewrite the middle term using these numbers

l7_52.png

(7.24)

Now we group and factor this,

l7_53.png

(7.25)

We can then check this,

l7_54.png

(7.26)

Good! Now we solve for the identified binomial factors,

l7_55.png

(7.27)

and

l7_56.png

(7.28)

We then verify these results. For l7_57.png,

l7_58.png

(7.29)

For x = -4,

l7_59.png

(7.30)

So, both roots hold.

Factoring works beautifully when the numbers align, often signaled by a positive discriminant (l7_60.png) and integer-friendly coefficients. Not every quadratic factors easily, though. For now, factoring is your first step to cracking the quadratic code—simple, elegant, and deeply satisfying.

Terms and Definitions

Term/Definition 7.15 Splitting the middle term: A technique for factoring quadratics l7_61.png by decomposing bx into two terms whose coefficients multiply to a·c and add to b.

Term/Definition 7.16 Grouping: A factoring method for polynomials with four or more terms; group in pairs, factor GCF from each pair, then factor common binomial.

Term/Definition 7.17 Trial and error: Trying different possible factor pairs to match the original polynomial.

Term/Definition 7.18 Conjugate product: The product of a complex number and its conjugate (e.g., l7_62.png).

Assumptions (the implicit beliefs the author relies on)

Assumption 7.10: Factoring is a primary, intuitive method for solving quadratics when it works.

Assumption 7.11: Many quadratics factor nicely over integers or rationals (especially with integer coefficients).

Assumption 7.12: If a quadratic factors into binomials, roots come directly from setting each factor to zero.

Assumption 7.13: The zero-product property holds: if (p x + q)(r x + s) = 0, then p x + q = 0 or r x + s = 0.

Assumption 7.14: Sum of squares is irreducible over reals but factors over complexes using conjugates.

Assumption 7.15: Difference of squares, sum/difference of cubes, and perfect square trinomials are reliable patterns.

Assumption 7.16: Splitting middle term and grouping cover most integer-coefficient quadratics.

Assumption 7.17: Trial and error is viable when coefficients are small and factors are integers.

Assumption 7.18: Some quadratics are irreducible over reals; complex roots may be needed.

Assumption 7.19: Verification (plugging roots back in to the original equation) confirms correct factoring and solutions.

Principles

Principle 7.9: Factoring rewrites quadratics as products → roots from setting factors = 0.

Principle 7.10: Start with GCF: factor out common factor from all terms.

Principle 7.11: Use zero-product property: product = 0 implies at least one factor = 0.

Exercise 7.7: Begin with Term/Definition 7.15 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Exercise 7.8: Solve each equation by factoring and then plot the equations to verify your answers.
a) l7_63.png.
b) l7_64.png.
c) l7_65.png.
d) l7_66.png.
e) l7_67.png.
f) l7_68.png.

Solution by Completing the Square

Sometimes an attempt to factor a quadratic becomes very difficult. In such cases we can use a second technique. This technique not only helps us solve equations but also lays the groundwork for understanding concepts like parabolas and even trajectories in physics—think of a ball’s arc through the air! It’s a bit like sculpting: we reshape the equation into a form that reveals its solutions naturally.

Completing the square transforms a quadratic equation from its standard form,

l7_69.png

(7.31)

into a perfect square trinomial plus a constant. Why? Because a perfect square, like l7_70.png, is easy to solve. This method works for any quadratic equation, even when factoring isn’t obvious, making it a versatile tool in your mathematical toolkit.

Let’s solve a general quadratic equation, l7_71.png, by completing the square. Don’t worry—we’ll follow with a concrete example to make it crystal clear. We begin by moving the constant term. This allows us to start to isolate x. We accomplish this by subtracting c from both sides,

l7_72.png

(7.32)

Divide by the leading coefficient. This always transforms the leading coefficient to 1,

l7_73.png

(7.33)

To form a perfect square we need to find the magic number, take the coefficient of x (this is now l7_74.png), halve it, and square it,

l7_75.png

(7.34)

This is the number we’ll add to both sides to “complete” the square.

l7_76.png

(7.35)

Rewrite the left as a square since the left side is now a perfect square trinomial and we can factor it,

l7_77.png

(7.36)

We now simplify the right-hand side. We combine the terms on the right over a common denominator (l7_78.png),

l7_79.png

(7.37)

So the equation becomes,

l7_80.png

(7.38)

We then solve for x and we take the square root of both sides,

l7_81.png

(7.39)

We must then isolate (x),

l7_82.png

(7.40)

As it happens, this is the quadratic formula, and we will see more about this in the next section! Completing the square is actually how that famous formula is derived—pretty neat, right?
For example, solving

l7_83.png

(7.41)

First, we move the constant,

l7_84.png

(7.42)

Then we divide by 2,

l7_85.png

(7.43)

Find the magic number. The coefficient of x is 4. Half of 4 is 2, and l7_86.png = 4. We add this to both sides,

l7_87.png

(7.44)

Rewrite this as a square,

l7_88.png

(7.45)

Take the square root,

l7_89.png

(7.46)

Solve for x,

l7_90.png

(7.47)

So x=1 or x=-5. We can check this. For x = 1,

l7_91.png

(7.48)

For x = -5,

l7_92.png

(7.49)

Both work!

Completing the square isn’t just a trick—it’s a window into the geometry of quadratics. That l7_93.png form shows the vertex of a parabola, which could represent the peak height of a projectile in physics. Plus, it’s a stepping stone to the quadratic formula, which we’ll explore next. Practice this method, and you’ll see patterns emerge that connect algebra to the real world.

Terms and Definitions

Term/Definition 7.19 Completing the square: A method to rewrite a quadratic equation as a perfect square trinomial plus a constant, revealing roots and vertex.

Term/Definition 7.20 Magic number (or completion term): The value added to both sides to form a perfect square; found by halving the linear coefficient and squaring it (l7_94.png).

Assumptions (the implicit beliefs the author relies on)

Assumption 7.20: Completing the square works for any quadratic equation (even when factoring is difficult or impossible over integers).

Assumption 7.21: The method reveals both algebraic solutions (roots) and geometric insight (vertex form).

Assumption 7.22: The “magic number” (l7_95.png) always completes the square when the leading coefficient is 1 (or after dividing by a).

Assumption 7.23: Verification by substitution is necessary to confirm solutions.

Principles

Principle 7.12: Completing the square transforms l7_96.png into vertex form: l7_97.png.

Principle 7.13: Steps for completing the square:

Move constant term to right.  

Divide by leading coefficient a to make leading term l7_98.png.  

Add magic number l7_99.png to both sides.  

Rewrite left as perfect square.  

Simplify right side.  

Take square root of both sides (include ±).  

Solve for x.

Exercise 7.9: Begin with Term/Definition 7.19 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Exercise 7.10: Solve each equation by completing the square and then plot the equations to verify your answers.
a) l7_100.png.
b) l7_101.png.
c) l7_102.png.
d) l7_103.png.
e) l7_104.png.

Solution by the Quadratic Formula

After factoring and completing the square, we arrive at the superstar of quadratic-solving methods: the quadratic formula. This is the go-to tool when factoring feels like hunting for a needle in a haystack, or when completing the square gets tedious. It’s a universal key that unlocks the solutions to any quadratic equation. Let’s see how it works.

For a quadratic equation in standard form,

l7_105.png

(7.50)

the solutions (or roots) are given by the formula,

l7_106.png

(7.51)

This formula might look intimidating, but it’s just the result of completing the square on the general form—we did the heavy lifting in the last section! Now, it’s a plug-and-play solution.

Here is how it works. You begin by identifying a, b, and c by matching your equation to (7.51). Then we must compute the discriminant l7_107.png. Then you plug these values  into the formula (7.51). Then you solve for the two values of x.

For example, solving

l7_108.png

(7.52)

We begin by identifying the coefficients; a = 3, b = -5, and c = 2. Then we compute the discriminant,

l7_109.png

(7.53)

Plug into the formula (7.52),

l7_110.png

(7.54)

So, the solutions are x = 1 and l7_111.png. We can check this,

l7_112.png

(7.55)

and

l7_113.png

(7.56)

Both hold!

The quadratic formula is like a Swiss Army knife—it works every time, no matter the equation.  Memorize it, practice it, and you’ll see it pop up everywhere in physics.

Terms and Definitions

Term/Definition 7.21 Quadratic formula: The general solution for any quadratic equation l7_114.png; given by
l7_115.png. Here the ± indicates two possible solutions: one with addition, one with subtraction of the square root term.

Assumptions (the implicit beliefs the author relies on)

Assumption 7.24: Every quadratic equation (l7_116.png) can be solved using the quadratic formula.

Assumption 7.25: The quadratic formula is derived from completing the square on the general form.

Assumption 7.26: Roots can be real or complex; the formula works in all cases.

Assumption 7.27: Verification by substitution is necessary to confirm solutions.

Principles

Principle 7.14: Compute discriminant l7_117.png first:  D > 0 → two distinct real roots, D = 0 → one real root (repeated), D < 0 → no real roots (complex conjugate pair).

Principle 7.15: Plug a, b, c into formula; handle ± for both solutions.

Principle 7.16: Simplify square root and fraction step-by-step.

Exercise 7.11: Begin with Term/Definition 7.21 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Exercise 7.12: Solve each equation using the quadratic formula, find the discriminant, and then plot the equations to verify your answers.
a) l7_118.png.
b) l7_119.png.
c) l7_120.png.
d) l7_121.png.
e) l7_122.png.

Ballistic Trajectories

Quadratic equations aren’t just abstract puzzles—they can be used to describe the world around us, especially in physics. One powerful example is a ballistic trajectory: the curved path of an object—like a thrown ball, a kicked soccer ball, or even a cannonball—moving under gravity alone. What arc do you see? It’s a parabola, and its equation is quadratic. Let’s explore how the tools we’ve learned help us predict where and when that object lands.

Imagine you toss a ball straight up or at an angle. Once it leaves your hand, gravity pulls it back down, and its height over time follows a quadratic equation. For simplicity, let’s focus on vertical motion first (no horizontal wind or spin—just up and down). The height h(t) of the ball at time t is given by

l7_123.png

(7.57)

where g is the acceleration due to gravity near the surface of the Earth (about 9.8 m l7_124.png), l7_125.png is the initial speed (this is 0 if we simply drop something), l7_126.png is the initial height, and t is the time. This is a quadratic equation in t, with coefficients l7_127.png, l7_128.png, and l7_129.png. The negative a means the parabola opens downward—makes sense, since gravity pulls the ball back to Earth.

When does the ball hit the ground? That’s when h(t) = 0. So, we set the equation to zero and solve,

l7_130.png

(7.58)

Let’s use the quadratic formula,

l7_131.png

(7.59)

Suppose you throw a ball upward from a height of 2 m l7_132.png l7_133.png with an initial speed l7_134.pngm l7_135.png), and the acceleration due to gravity is g=9.8 m l7_136.png. When does it hit the ground?

We write the equation,

l7_137.png

(7.60)

Then we set h(t)=0, and simplify,

l7_138.png

(7.61)

We then identify the coefficients, a = -4.9, b = 10, and c = 2.

Then compute the discriminant,

l7_139.png

(7.62)

Then apply the quadratic formula,

l7_140.png

(7.63)

So we have two approximate values of t, 2.2432 and -0.1835. Since negative time doesn’t really mean anything (since we can’t really consider a time before we begin measuring it), the answer is t≈2.2432 seconds.

Terms and Definitions

Term/Definition 7.22 Ballistic trajectory: The curved path of an object (e.g., thrown ball, cannonball) moving under gravity alone (no air resistance or other forces).

Term/Definition 7.23 Parabola: The shape of a ballistic trajectory when graphed (height vs. time); a quadratic curve.

Term/Definition 7.24 Height (symbol h(t)): The vertical position of the object at time t.

Term/Definition 7.25 Initial height (symbol l7_141.png): The starting height of the object above a reference level (e.g., ground).

Term/Definition 7.26 Initial speed (symbol l7_142.png): The starting vertical speed of the object (positive upward, zero if dropped).

Term/Definition 7.27 Acceleration due to gravity (symbol g): The constant downward acceleration near Earth’s surface (~9.8 m/s²).

Term/Definition 7.28 Time (symbol t): The elapsed time since release or launch.

Term/Definition 7.29 Height equation: The equation describing height over time in vertical motion under gravity: l7_143.png.

Assumptions (the implicit beliefs the author relies on)

Assumption 7.28: Objects in free fall (or projectile motion) experience constant downward acceleration g ≈ 9.8 l7_144.png.

Assumption 7.29: Motion is vertical only (straight up/down) or vertical component is isolated.

Assumption 7.30: Downward direction is negative (negative sign on g term in h(t)).

Assumption 7.31: Time t starts at 0 when object is released/launched.

Assumption 7.32: Negative time solutions are physically meaningless (discard them).

Principles

Principle 7.17: Ballistic trajectories are parabolic — height h(t) is a quadratic function of time: l7_145.png.

Principle 7.18: Negative leading coefficient (-(1/2) g) means parabola opens downward (object rises then falls).

Principle 7.19: Set h(t) = 0 to find time to hit ground (solve quadratic equation for t).

Principle 7.20: Height equation has two roots: one positive (physical landing time), one negative (discard — before t = 0).

Principle 7.21: Verify solution: substitute t back into h(t) to confirm ≈ 0 (accounting for rounding).

Principle 7.22: Gravity dominates vertical motion — produces characteristic parabolic arc.

Exercise 7.13: Begin with Term/Definition 7.22 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Using Solve[]

So far, we’ve tackled quadratic equations with factoring, completing the square, and the quadratic formula—great for understanding the math by hand. But what if you want a quick, reliable solution without the pencil-and-paper grind? Enter the Wolfram Language, which we introduced earlier, and its powerful function Solve[]. If you’ve used it for linear equations in Lesson 6, you’re ready to see how it handles quadratics—perfect for physics problems like our ballistic trajectories.

Recall that when we use solve, we write Solve[equation, variable to solve for]
Let’s see it in action.

We can first write the standard form.

l7_146.gif

l7_147.png

This is equivalent to the quadratic formula (7.51).

Example 1: A Simple Quadratic
Take,

l7_148.png

We could factor this to get (x-2)(x-3)=0.

l7_149.gif

l7_150.png

This means that x = 2 and x = 3—exact roots, no fuss. Compare that to factoring by hand: same result, but Solve[] did it instantly.

Let’s revisit our ballistic example:

l7_151.gif

l7_152.png

Of course, this matches our quadratic formula result from earlier. The negative root is before the throw, and the positive one (about 2.22 seconds) is when the ball lands.

Terms and Definitions

Term/Definition 7.30 Quadratic equation (in context): Equations of form a l7_153.png + b x + c == 0; solved symbolically by Solve[].

Assumptions (the implicit beliefs the author relies on)

Assumption 7.33: WL handles quadratics exactly (no numerical approximation needed for these examples).

Principles

Principle 7.23: Use Solve[equation, variable] to solve any quadratic symbolically in WL.

Principle 7.24: Combine Solve[] with plotting (from prior sections) to visualize and verify solutions.

Exercise 7.14: Begin with Term/Definition 7.30 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Exercise 7.15: Solve each equation using Solve[] and then plot the equations to verify your answers.
a) l7_154.png.
b) l7_155.png.
c) l7_156.png.
d) l7_157.png.
e) l7_158.png.

Using Complex Numbers

Back in Lesson 3, we met complex numbers—those handy tools like 3 + 4i, where l7_159.png, that let us handle square roots of negatives. Now, in our quadratic journey, they’re about to shine. When a quadratic’s discriminant l7_160.png dips below zero, real roots vanish, and complex roots take over. With our solving methods and Wolfram Language skills, we’ll see how these “imaginary” solutions come about.

For the general form of a quadratic l7_161.png, the quadratic formula gives,

l7_162.png

(7.64)

If the discriminant is less than 0, l7_163.png, the square root becomes imaginary. This always yields two roots, often as conjugates (e.g., a + b  i and a - b i). Let’s see it in action.

Take the equation,

l7_164.png

(7.65)

Comparing this to the standard form, we have a = 1, b = 4, and c = 5. The discriminant is then,

l7_165.png

(7.66)

We apply this to the quadratic formula,

l7_166.png

(7.67)

This gives us the roots, t = -2 + i and t = -2 - i. The parabola doesn’t hit the t-axis—complex roots tell us there’s no real solution here.
In Wolfram Language we write this:

l7_167.gif

l7_168.png

Let’s tweak our ballistic equation. Suppose

l7_169.gif

l7_170.png

there is no real landing time—physically, this might mean the conditions (speed, height) don’t allow a real trajectory under gravity alone. Complex roots wave a red flag that something’s off.

Terms and Definitions

Term/Definition 7.31 Complex roots: The solutions to a quadratic equation when the discriminant is negative; always come in conjugate pairs (e.g., -2 + i and -2 - i).

Assumptions (the implicit beliefs the author relies on)

Assumption 7.34: Quadratic equations always have two roots (counting multiplicity), either real or complex.

Principles

Principle 7.24: Quadratic formula always gives solutions: real when D 0, complex when D < 0.

Principle 7.25: Complex roots come in conjugate pairs (a + b i and a - b i) for real-coefficient quadratics.

Exercise 7.16: Begin with Term/Definition 7.31 and copy it into your notebook. Reflect on its meaning for a few minutes. Note any thoughts that come to mind. How would you explain this to someone sitting in front of you. Write this down. Then do this for each term/definition, assumption, and principle.

Exercise 7.17: Solve each equation using Solve[] and then plot the equations to verify your answers.
a) l7_171.png.
b) l7_172.png.
c) l7_173.png.
d) l7_174.png.
e) l7_175.png, where c=0, c=3, and c=-3.

Summary

Write a summary of this lesson as an exercise.

For Further Study

I. M. Gelfand, A. Shen, (1993), Algebra, Birkhauser. As stated in Lesson 4a, I can think of few that are better.

Navy Education and Training Professional Development and Technology Center, (1980) Mathematics, Basic Math and Algebra, NAVEDTRA 144139, Reprinted in 1985 (available for free at the Internet Archive https://archive.org/details/US_Navy_Training_Course_-_Mathematics_Basic_Math_and_Algebra). This is the first of a comprehensive set of manuals for training sailors in basic math.

Created with the Wolfram Language