Integrate algebra skills through mixed practice, diagnostics, and strategy.
Learning objectives
After this review you should be able to identify methods for mixed problems, move among representations, solve equations and inequalities, analyze functions, build models, check answers, use SymPy strategically, and create a personal study plan.
Motivation: mixed problems are different
In a chapter exercise, the title often tells you the method. Real problems do not. Ask:
What kind of object is this?
What restrictions matter?
Which method might work?
How can I check the answer?
Algebra decision map
If you see…
Think about…
Possible tools
denominator with variable
restrictions and rational functions
factor, cancel, check forbidden values
square root
domain and extraneous solutions
isolate, square, check
variable in exponent
exponentials and logarithms
rewrite bases, take logs
two equations
simultaneous constraints
substitution, elimination, graph
graph shifts
transformations
a*f(b(x-h))+k
word problem
modeling cycle
variables, units, assumptions
Diagnostic warm-up
Expand (x + 2)(x - 5).
Solve -2 <= 3x + 1 < 10.
Find the domain of sqrt(x - 4)/(x + 1).
Describe g(x)=2(x-3)^2+1 from f(x)=x^2.
Find the line through (0, 4) and (3, 10).
Find the roots of (x - 2)^2(x + 1).
Simplify (x^2 - 9)/(x - 3) and state the warning.
Solve 2^x = 12 exactly.
Solve x + y = 7, x - y = 1.
Choose a model family for repeated 8% yearly growth.
TipDiagnostic answers
x^2 - 3x - 10.
-1 <= x < 3.
x >= 4.
Vertical stretch by 2, right 3, up 1.
y = 2x + 4.
Roots: 2 and -1; 2 has multiplicity 2.
x + 3, but original excludes x = 3.
x = log(12)/log(2).
(4, 3).
Exponential.
Method-selection examples
Rational equation:
2/(x - 1) = 3/(x + 2)
First list restrictions x != 1, -2, then cross multiply: 2(x+2)=3(x-1), so x=7.
Exponential model:
500(0.85)^t = 200
Use logarithms: t = log(0.4)/log(0.85).
System from words: 18 nickels and dimes worth $1.35 gives:
n + d = 18
5n + 10d = 135
Mixed worked examples
Hidden restriction: (x^2 - 16)/(x - 4) simplifies to x + 4, but excludes x = 4.
Absolute value: |x - 3| <= 5 gives -2 <= x <= 8.
Inverse: if f(x)=2x+5, then f^-1(x)=(x-5)/2.
Quadratic vertex: h(t)=-4(t-3)^2+20 has maximum 20 at t=3.
Polynomial: (x - 2)^2(x + 3) touches at 2 and crosses at -3.
Radical check: sqrt(x+6)=x gives candidates 3,-2; only 3 works.
Log domain: log(x-4)=2 requires x>4, so x=e^2+4 is valid.
Error analysis workshop
A student cancels x in (x + 2)/(x + 3) and gets 2/3.
From -2x < 8, a student writes x < -4.
A student writes log(x + 5) = log(x) + log(5).
A student solves sqrt(x + 5)=x-1, gets x=4,-1, and keeps both.
TipError analysis answers
You cannot cancel terms across addition.
Dividing by a negative reverses the inequality: x > -4.
Logarithms do not distribute over addition.
x = -1 is extraneous.
Strategy sheet
Equations: undo operations and check.
Inequalities: reverse direction when multiplying or dividing by a negative.
Domains: watch denominators, even roots, and logarithms.
Transformations: read a*f(b(x-h))+k carefully.
Polynomials: factors reveal roots and multiplicity.
Systems: solutions satisfy every equation.
Modeling: define variables and units before solving.
SymPy: verify, do not skip reasoning.
Practice sets
Factor x^2 - 9.
Solve 5x + 2 = 22.
Find the slope between (1, 4) and (3, 10).
Solve |2x - 1| < 7.
Find the domain of (x + 2)/(x^2 - 1).
Solve 3^x = 25 exactly.
Solve y = 2x + 1, y = -x + 7.
A taxi trip costs $3.50 plus $2.20 per mile. A ride costs $25.50. How many miles was it?
TipPractice answers
(x - 3)(x + 3).
x = 4.
Slope 3.
-3 < x < 4.
Exclude x = -1 and x = 1.
x = log(25)/log(3).
(2, 5).
10 miles.
Personal study plan
If you missed…
Review…
domain restrictions
inequalities, rational/radical functions, logs
graph features
functions, transformations, polynomials
model setup
algebraic modeling and systems
exponentials/logs
exponentials and logarithms
tool use
symbolic computation with SymPy
Browser symbolic practice
Use math.js, Nerdamer, Algebrite, or PyScript to verify answers. Then write what the tool confirmed and what you still had to decide.
Subtopic guided practice and checkpoints
Mixed review is about choosing a method before calculating. Use these labs to practice recognizing problem types.
Lab 1: choose the method
Guess first. Which method fits each problem: factor, isolate, graph, substitute, or use logarithms?
A. 3x - 5 = 16
B. x^2 - 9x + 20 = 0
C. 2^x = 13
D. y = x + 1 and y = -x + 5
Guided exercise.
A isolate the variable
B factor the quadratic
C use logarithms or numerical solving
D substitute or graph the two lines
Checkpoint. For each problem in your current homework, write the method name before the first algebraic step.
Lab 2: execute step by step
Guess first. In a mixed problem set, why is skipping steps risky?
Answer: x = 4
Method: linear equation
Steps:
1. Original equation:
Eq(2*(x + 4) - 1*3, 13)
2. Expand both sides:
Eq(2*x + 5, 13)
3. Move everything to one side:
Eq(2*x - 8, 0)
This writes the equation in the form ax + b = 0.
4. Move the constant term:
Eq(2*x, 8)
5. Divide by the coefficient of the variable:
Eq(x, 4)
Check:
x = 4: valid
import sympy as spx, y = sp.symbols("x y")checks = {"factor": sp.factor(x**2-5*x +6),"solve quadratic": sp.solve(sp.Eq(x**2-5*x +6, 0), x),"solve system": sp.solve((sp.Eq(x + y, 5), sp.Eq(x - y, 1)), (x, y)),}checks
from edumath.algebra import expand_question, factor_questionquestions = [expand_question((x +2)*(x -3)), factor_question(x**2-5*x +6)][question.prompt for question in questions]