Which of the following equations have exactly one solution?
You’ve probably seen a list of algebraic equations and been asked to pick the ones that “only hit the target once.On the flip side, ” It’s a quick‑fire test in exams and a handy mental check when you’re debugging a math problem. But the trick is that the answer isn’t always obvious—especially when you start mixing different types of equations or throw in weird coefficients. Let’s unpack the rules, walk through the most common cases, and give you a cheat sheet you can drop into your notes It's one of those things that adds up..
What Is an Equation With Exactly One Solution?
An equation has exactly one solution when there is a single value of the variable that satisfies the equation. Day to day, in other words, the graph of the equation intersects the horizontal line (y = 0) at precisely one point. For linear equations, that’s usually the case unless the line is horizontal and never crosses the axis. Think about it: for quadratics, it depends on the discriminant. And for higher‑degree polynomials or systems, you need to dig a bit deeper Nothing fancy..
Why It Matters / Why People Care
You might wonder why you’d bother distinguishing “exactly one solution” from “none” or “two.” In practice, the distinction tells you:
- Uniqueness of a physical system – In engineering, a single solution often means a unique equilibrium point.
- Feasibility in optimization – If a constraint has only one feasible point, you can’t tweak parameters.
- Predictability in economics – A unique market equilibrium is easier to forecast than multiple equilibria.
When you’re solving equations in exams, knowing the exact count saves time and avoids careless mistakes. In coding, it ensures your algorithm doesn’t return multiple roots when only one is valid.
How It Works (or How to Do It)
Let’s break down the most common equation types. For each, I’ll show the rule to decide if it has exactly one solution, then give a quick example.
Linear Equations
A linear equation in one variable looks like
(ax + b = 0).
-
Rule: If (a \neq 0), there’s exactly one solution: (x = -\frac{b}{a}).
If (a = 0), the equation reduces to (b = 0).- If (b = 0), every (x) satisfies it—infinitely many solutions.
- If (b \neq 0), no solution.
-
Example:
(3x - 6 = 0) → (x = 2) (one solution).
(0x + 5 = 0) → no solution.
Quadratic Equations
A quadratic has the form
(ax^2 + bx + c = 0).
-
Rule: Look at the discriminant (D = b^2 - 4ac).
- (D > 0): Two distinct solutions.
- (D = 0): Exactly one (double) solution.
- (D < 0): No real solutions (complex roots).
-
Example:
(x^2 - 4x + 4 = 0) → (D = 0) → (x = 2) (one solution).
(x^2 + 1 = 0) → (D = -4) → no real solution.
Cubic Equations
A cubic looks like
(ax^3 + bx^2 + cx + d = 0).
-
Rule: Cubics always have at least one real root. Whether they have one or three distinct real roots depends on the discriminant (more complex).
- If the discriminant (Δ > 0): Three distinct real roots.
- If (Δ = 0): Multiple roots—could be one single and one double, or a triple root.
- If (Δ < 0): One real root and two complex conjugates.
-
Example:
(x^3 - 3x + 2 = 0) → factors to ((x-1)(x^2+x-2)) → roots (1, 1, -2). Here (Δ = 0) → one single and one double root Still holds up..
Systems of Linear Equations
A system like
[
\begin{cases}
a_1x + b_1y = c_1\
a_2x + b_2y = c_2
\end{cases}
]
-
Rule: The determinant (Δ = a_1b_2 - a_2b_1).
- (Δ \neq 0): Exactly one intersection point → one solution.
- (Δ = 0): Either no solution (parallel lines) or infinitely many (coincident lines).
-
Example:
[ \begin{cases} x + y = 3\ 2x - y = 1 \end{cases} ]
(Δ = 1*(-1) - 2*1 = -3 \neq 0) → one solution ((x, y) = (1,2)) And that's really what it comes down to. Worth knowing..
Rational Equations
An equation like
(\frac{p(x)}{q(x)} = 0).
-
Rule: The numerator must be zero, but the denominator cannot be zero at that point Not complicated — just consistent..
- If the numerator has a single root and the denominator is non‑zero there, you get exactly one solution.
- If the numerator has multiple roots or the denominator zeroes at the same point, the count changes.
-
Example:
(\frac{x-4}{x+2} = 0) → numerator zero at (x=4). Denominator non‑zero → one solution.
Exponential and Logarithmic Equations
Equations like (a^x = b) or (\log_a(x) = c).
-
Rule: For base (a > 0, a \neq 1), the function is one‑to‑one Simple, but easy to overlook..
- (a^x = b) has exactly one solution (x = \log_a(b)) if (b > 0).
- (\log_a(x) = c) has exactly one solution (x = a^c) if (x > 0).
-
Example:
(2^x = 8) → (x = 3).
(\log_5(x) = 1) → (x = 5) That alone is useful..
Common Mistakes / What Most People Get Wrong
-
Confusing “no solution” with “one solution.”
A linear equation with zero slope and a non‑zero intercept (e.g., (0x + 5 = 0)) has no solution, not one. -
Ignoring the discriminant sign.
For quadratics, students often think (D = 0) means “no solution.” It actually means a single, repeated root. -
Overlooking domain restrictions.
In rational equations, if the denominator vanishes at the root of the numerator, that root is extraneous It's one of those things that adds up.. -
Treating systems like scalars.
A 2×2 system with a zero determinant can still have infinitely many solutions if the equations are dependent Which is the point.. -
Assuming exponentials always cross the axis.
(a^x = 0) has no real solution because exponentials never hit zero Not complicated — just consistent..
Practical Tips / What Actually Works
-
Always check the coefficient of the highest‑degree term first.
If it’s zero, the equation’s degree drops, changing the solution count. -
Compute the discriminant early.
For quadratics, a quick (b^2 - 4ac) tells you everything you need. -
Use factorization when possible.
Factoring reveals repeated roots immediately. -
For systems, calculate the determinant.
A single line of code or pencil math can tell you if you’ll have a unique intersection Took long enough.. -
Plot the function.
A quick sketch (even mental) can confirm whether the graph crosses the axis once, never, or multiple times But it adds up..
FAQ
Q1: If a quadratic has a double root, does it count as one solution?
A1: Yes. Even though the root is repeated, it’s still a single value that satisfies the equation It's one of those things that adds up..
Q2: Can a cubic ever have exactly one real solution?
A2: Yes, if its discriminant is negative. That means one real root and two complex conjugates.
Q3: What about equations like (x^2 = 0)?
A3: That’s a special case of a quadratic with a double root at (x = 0)—exactly one solution.
Q4: Are there equations with more than one variable that still have exactly one solution?
A4: Absolutely. Systems of equations can have a unique solution if the equations are independent and consistent.
Q5: Does the base of a logarithm affect the number of solutions?
A5: As long as the base is positive and not one, the logarithm is one‑to‑one, so a single solution Small thing, real impact. Took long enough..
Wrap‑Up
Knowing whether an equation has exactly one solution is more than a textbook exercise—it’s a practical skill that shows up in coding, physics, finance, and everyday problem‑solving. By checking the coefficient of the highest‑degree term, computing discriminants, and respecting domain constraints, you can quickly spot the unique solution (or lack thereof). Keep this cheat sheet handy, and you’ll never be stuck guessing the number of solutions again.