MATH 1 • MATHEMATICAL PRACTICES & REASONING

Selecting Efficient Strategies — I can select an efficient strategy among multiple methods and explain why it is efficient.

Learn to compare solution methods, choose the fastest path, and justify your reasoning like a mathematician.

Historical Context & Motivation

Mathematics has never been about finding just one way to solve a problem. Throughout history, mathematicians have competed to discover the most efficient strategy — the method that reaches a correct answer with the fewest steps, the least computation, or the clearest reasoning. The drive toward efficiency has shaped entire branches of mathematics, from ancient shortcut algorithms to modern computer science.

~300 BCE
Euclid's Algorithm
Euclid developed a fast method for finding the greatest common divisor of two numbers, replacing brute-force listing of factors. This is one of the earliest recorded examples of choosing an efficient strategy over an exhaustive one.
~825 CE
Al-Khwarizmi's Algebra
The Persian mathematician al-Khwarizmi systematized solving equations through balancing and reduction, giving us the word "algorithm." His methods replaced trial-and-error with structured, repeatable steps.
1637
Descartes & Coordinate Geometry
René Descartes merged algebra and geometry, allowing problems that were tedious in pure geometry to be solved efficiently with equations — and vice versa. Strategy selection between algebraic and geometric approaches became a core mathematical skill.
1947
Dantzig's Simplex Method
George Dantzig invented the simplex algorithm for linear programming, enabling businesses and engineers to optimize decisions among millions of possibilities. Efficiency in strategy became a matter of real-world impact.

The thread running through all of these milestones is a single question: When multiple correct methods exist, how do you pick the best one — and how do you explain why it's best? That is the skill this lesson develops. It is not enough to solve a problem; a strong mathematician evaluates the available strategies and selects the one that is most efficient for the situation at hand.

Core Principles of Strategy Selection

Before you can choose the most efficient method, you need a framework for comparing strategies. Efficiency in math is not a single thing — it depends on the structure of the problem, the tools available, and your own fluency with different techniques. The following principles form the foundation of smart strategy selection.

1

Step Count

An efficient strategy reaches the answer in fewer steps. Count the arithmetic operations, transformations, or logical moves each method requires. Fewer steps usually means fewer chances for error.
2

Computational Complexity

Some steps are harder than others. Multiplying two-digit numbers is more complex than adding single digits. An efficient strategy minimizes the difficulty of the individual computations, not just their number.
3

Structural Match

The best strategy exploits the structure of the problem. A problem with special patterns — like perfect squares, common factors, or symmetry — calls for a method that leverages those features directly.
4

Clarity & Communication

Efficiency also means producing work that is easy to follow and verify. A method that you can explain clearly to someone else is more efficient in practice than one that is fast but opaque.
5

Error Resistance

An efficient strategy minimizes the likelihood of mistakes. Methods with fewer sign changes, fewer fraction operations, or fewer opportunities for miscopying are inherently more efficient for human problem-solvers.
KEY TAKEAWAY
Think of choosing a math strategy like choosing a route to school. The highway might be the shortest distance, but if it's rush hour, taking back roads could be faster. Similarly, the "standard" method for a problem isn't always the quickest — you have to read the situation and pick the path that gets you there with the least total effort.

Visualizing Strategy Selection

The flowchart below illustrates the decision-making process a mathematician uses when faced with a problem that can be solved multiple ways. Notice that the process is not random — it involves analyzing the problem's structure, listing available methods, comparing them on efficiency criteria, and then making a justified choice.

This flowchart shows the five-stage process: read the problem, identify its structure, list available methods, compare them on efficiency criteria (step count, computational ease, structural match), and then select and justify your choice.

The diamond shape in the middle represents the critical decision point. This is where you weigh your options against each other. In practice, one method might win on step count but lose on computational ease. Your job is to balance these factors and pick the strategy that minimizes your total effort while keeping your work clear and accurate.

Mathematical Framework — Comparing Methods

To make strategy selection concrete, consider a classic scenario: solving a quadratic equation. You typically have at least three methods available — factoring, the quadratic formula, and completing the square. Each has a different efficiency profile depending on the specific equation.

STANDARD FORM OF A QUADRATIC
ax² + bx + c = 0
where a, b, and c are constants with a ≠ 0. This is the starting point for all three methods.
QUADRATIC FORMULA
x = (−b ± √(b² − 4ac)) / (2a)
This formula always works, but it involves substitution, multiplication, subtraction under a radical, and simplification — often 6–8 steps. It is the universal fallback when other methods don't apply cleanly.
FACTORING PATTERN
(x + p)(x + q) = 0 → x = −p or x = −q
When a = 1, you look for two numbers p and q such that p + q = b and p × q = c. If such integers exist, factoring solves the problem in 2–3 steps — far fewer than the quadratic formula.
COMPLETING THE SQUARE
a(x + b/(2a))² = b²/(4a) − c → solve for x
This method rewrites the equation as a perfect square, making it ideal when you need the vertex form or when the equation is close to a perfect square already. Typical step count: 5–7 steps.

The key insight is that the structure of the coefficients a, b, and c determines which method is most efficient. If the trinomial factors neatly with integers, factoring is fastest. If the discriminant b² − 4ac is a perfect square but the factors aren't obvious, the quadratic formula works smoothly. If you need vertex form, completing the square is the natural choice. Selecting the right method means reading the equation before diving in.

Strategy Comparison Map

The diagram below compares three common strategies for solving a quadratic equation across three efficiency dimensions: step count, computational difficulty, and structural match. Each strategy is plotted to show where it excels and where it falls short. Use this visual as a mental model when you face a new problem.

The bar chart compares three quadratic-solving strategies across three dimensions. Factoring excels in step count when applicable. The Quadratic Formula offers the highest structural flexibility (it always works). Completing the Square sits in the middle on most dimensions but is the natural choice when vertex form is needed.

Notice that no single strategy dominates every dimension. Factoring is lightning-fast but only works when integer factor pairs exist. The quadratic formula handles every quadratic but requires more arithmetic. Completing the square is versatile and gives you the vertex, but it can involve fractions. This is exactly why strategy selection is a skill, not just a habit — you need to diagnose the problem before committing to a method.

Worked Example — Choosing the Best Method

Let's walk through a complete example of strategy selection. We will look at a single equation, consider three methods, and justify our choice of the most efficient one.

Problem: Solve x² − 7x + 12 = 0

Strategy Selection & Solution
1
Step 1 — Analyze the StructureThe equation is in standard form with a = 1, b = −7, and c = 12. Since a = 1, the leading coefficient is simple. The constant term 12 has several factor pairs: (1, 12), (2, 6), (3, 4). We should check whether any pair sums to −7.
a = 1, integer coefficients, small constant → factoring is worth trying.
2
Step 2 — List Available MethodsMethod A: Factoring — look for two numbers that multiply to 12 and add to −7. Method B: Quadratic formula — substitute a = 1, b = −7, c = 12. Method C: Completing the square — rewrite with a perfect square on one side.
3
Step 3 — Compare EfficiencyFactoring: We need integers p and q with p × q = 12 and p + q = −7. Testing: (−3) × (−4) = 12 ✓ and (−3) + (−4) = −7 ✓. The factors exist! Factoring will take about 2 steps. Quadratic formula: requires computing b² − 4ac = 49 − 48 = 1, then ±√1, then dividing — about 6 steps. Completing the square: requires halving b, squaring it, rearranging — about 5 steps.
Factoring wins: fewest steps, simplest computation, perfect structural match.
4
Step 4 — Execute the Chosen Strategyx² − 7x + 12 = (x − 3)(x − 4) = 0. By the zero-product property, x − 3 = 0 or x − 4 = 0.
x = 3 or x = 4
5
Step 5 — Justify the ChoiceFactoring was the most efficient strategy because the equation had a = 1 and the constant 12 had an integer factor pair summing to b = −7. This allowed us to solve in just two steps instead of the five to eight steps required by other methods. The computation involved only basic integer arithmetic with no fractions or radicals.
💡 What if factoring didn't work?
If the factor pairs of c don't sum to b, factoring is not efficient — switch immediately to the quadratic formula. Don't waste time guessing. Recognizing when a strategy won't work is just as important as recognizing when it will.

Strengths & Limitations of Common Strategies

To select strategies efficiently across different problem types — not just quadratics — you need a reference for when each common approach shines and when it struggles. The table below extends the comparison to strategies you encounter across Math 1 topics, including solving linear systems and simplifying expressions.

Strategy comparison across Math 1 problem types
StrategyBest When …Avoid When …Typical Step Count
FactoringCoefficients are integers; factor pairs are easy to spotLeading coefficient is large or irrational roots expected2–3 steps
Quadratic FormulaAny quadratic; especially non-factorable or irrational rootsEquation factors easily — formula adds unnecessary work6–8 steps
Substitution (systems)One variable is already isolated or has coefficient 1Both equations have multi-term expressions for both variables4–6 steps
Elimination (systems)Coefficients of one variable are equal or additive inversesNeither variable aligns without extensive multiplication3–5 steps
GraphingYou need a visual check or approximate solutions are acceptableExact answers are required and roots are not integersVaries
KEY TAKEAWAY
No single strategy is always the most efficient — that's the whole point of this skill. Think of your collection of strategies like a toolkit: a wrench, a screwdriver, and pliers are all useful, but you wouldn't use a wrench to drive a screw. Reading the problem first is like looking at the fastener before reaching into the toolbox.

Connection to Advanced Mathematics & Real Life

The habit of selecting efficient strategies is not just a Math 1 skill — it is a core mathematical practice that scales into every advanced course you will take. In Algebra 2, you will choose between polynomial long division and synthetic division. In Pre-Calculus, you will decide whether to solve a trigonometric equation algebraically or graphically. In AP Calculus, you will choose between integration techniques like substitution, integration by parts, and partial fractions. The thinking process is always the same: analyze, compare, select, justify.

How strategy selection grows with you
Math 1 SkillAdvanced Extension
Choosing factoring vs. quadratic formulaChoosing substitution vs. partial fractions in calculus integrals
Choosing substitution vs. elimination for linear systemsChoosing row reduction vs. matrix inversion in linear algebra
Recognizing special products (difference of squares)Recognizing algebraic identities to simplify complex expressions
Justifying strategy choice in writingWriting proofs with strategic lemma selection in upper-level math

Beyond the classroom, strategy selection is the foundation of computational thinking — a skill used by software engineers, data scientists, and business analysts every day. When a programmer chooses between a brute-force search and a binary search, they are doing exactly what you practice in this lesson: comparing methods, estimating effort, and selecting the most efficient path.

Practice Problems

PROBLEM 1CONCEPTUAL
A student solves every quadratic equation using the quadratic formula, even when the equation factors easily. Explain why this approach is not strategically efficient, and describe the kind of quadratic where factoring would be the better choice.
PROBLEM 2BASIC CALCULATION
Solve the system: y = 3x − 2 and 2x + y = 8. Which method — substitution or elimination — is more efficient here? Solve using your chosen method and explain your choice.
PROBLEM 3INTERMEDIATE
Solve x² − 16 = 0. Three methods are available: factoring (difference of squares), the quadratic formula, and completing the square. Solve using the most efficient method, then briefly explain why each of the other two methods is less efficient for this specific equation.
PROBLEM 4APPLIED
A rectangular garden has a perimeter of 40 meters and an area of 96 square meters. You want to find the length and width. Set up the system of equations. Then decide: should you use substitution, elimination, or graphing? Solve the problem and justify your strategy choice.
PROBLEM 5CRITICAL THINKING
Consider the equation 3x² + 11x − 4 = 0. A classmate says, "Since the leading coefficient is not 1, factoring won't work — just use the quadratic formula." Is this claim correct? Evaluate whether factoring is possible, compare the efficiency of factoring versus the quadratic formula for this equation, and write a general rule about when factoring is still efficient even with a leading coefficient other than 1.

Lesson Summary

Selecting an efficient strategy means analyzing a problem's structure before choosing a method. You list the available approaches — such as factoring, the quadratic formula, completing the square, substitution, or elimination — and compare them on step count, computational complexity, structural match, and error resistance.

The most efficient strategy is the one that reaches a correct answer with the least total effort while keeping your work clear enough to justify. No single method is always best — the right choice depends on the specific problem. Developing this judgment makes you a stronger, more flexible problem-solver, and it is a skill that extends far beyond Math 1 into advanced mathematics, computer science, and everyday decision-making.

Varsity Tutors • Math 1 • Selecting Efficient Strategies