← Back to CheriMathLab

Algebra Fundamentals

Master the language of mathematics — equations, inequalities, polynomials, and the elegant structures that connect them all.

Key Formulas & Concepts

1 Quadratic Roots Medium

Find all real values of \(k\) for which the equation \(2x^2 + kx + 8 = 0\) has exactly one real solution.

Show Hint
Set the discriminant equal to zero: \(k^2 - 4(2)(8) = 0\). Solve for \(k\).
2 System of Equations Medium

Solve the system: \(x + y + z = 6\), \(xy + yz + xz = 11\), \(xyz = 6\). Find \(x, y, z\).

Show Hint
These are the elementary symmetric polynomials. Think of \(x, y, z\) as roots of a cubic: \(t^3 - 6t^2 + 11t - 6 = 0\). Factor it.
3 Absolute Value Inequality Medium

Find all real \(x\) satisfying \(|2x - 3| + |x + 1| < 7\).

Show Hint
Consider three intervals: \(x < -1\), \(-1 \leq x < \frac{3}{2}\), and \(x \geq \frac{3}{2}\). Remove absolute values in each case and solve.
4 Polynomial Factoring Hard

Factor completely: \(x^4 - 5x^2 + 4\). Then find all roots.

Show Hint
Substitute \(u = x^2\) to get \(u^2 - 5u + 4 = (u - 1)(u - 4)\). Then factor each back in terms of \(x\).
5 Vieta's Formulas Hard

The roots of \(x^2 - 7x + k = 0\) differ by 3. Find \(k\) and both roots.

Show Hint
Let the roots be \(r\) and \(r + 3\). Then \(r + (r+3) = 7\) gives \(r = 2\). Use the product formula to find \(k = r(r+3)\).
6 Rational Expressions Medium

Simplify: \(\dfrac{x^3 - 8}{x^2 - 4}\) and state any restrictions on \(x\).

Show Hint
Factor numerator as difference of cubes: \(x^3 - 8 = (x - 2)(x^2 + 2x + 4)\). Factor denominator as difference of squares.
7 Nested Radicals Hard

Simplify: \(\sqrt{6 + 4\sqrt{2}} + \sqrt{6 - 4\sqrt{2}}\).

Show Hint
Try writing \(6 + 4\sqrt{2}\) as \((a + b)^2\) for some \(a, b\). You'll find \(6 + 4\sqrt{2} = (2 + \sqrt{2})^2\). Do the same for the other term.
8 Functional Equation Olympiad

Find all functions \(f: \mathbb{R} \rightarrow \mathbb{R}\) such that \(f(x + y) = f(x) + f(y) + 2xy\) for all real \(x, y\), given \(f(1) = 3\).

Show Hint
Set \(y = 0\) to find \(f(0) = 0\). Set \(y = 1\) to build a recurrence. Guess \(f(x) = x^2 + 2x\) and verify.
9 Inequality Challenge Hard

For positive reals \(a, b, c\) with \(a + b + c = 1\), prove that \(a^2 + b^2 + c^2 \geq \frac{1}{3}\).

Show Hint
Use the Cauchy-Schwarz inequality or the QM-AM inequality. Alternatively, expand \((a - b)^2 + (b - c)^2 + (c - a)^2 \geq 0\).
10 Logarithmic Equation Medium

Solve for \(x\): \(\log_2(x + 3) + \log_2(x - 1) = 5\).

Show Hint
Combine logs: \(\log_2((x+3)(x-1)) = 5\), so \((x+3)(x-1) = 32\). Expand and solve the quadratic. Check domain restrictions.
11 Polynomial Division Hard

When the polynomial \(p(x) = x^4 + ax^3 + bx^2 + cx + d\) is divided by \((x - 1)\), the remainder is 3. When divided by \((x - 2)\), the remainder is 5. When divided by \((x + 1)\), the remainder is 7. When divided by \((x + 2)\), the remainder is 9. Find \(a + b + c + d\).

Show Hint
By the Remainder Theorem, \(p(1) = 3\), \(p(2) = 5\), \(p(-1) = 7\), \(p(-2) = 9\). Set up a system of four equations and solve.
12 Floor Function Olympiad

Find the number of positive integers \(n \leq 1000\) such that \(\lfloor\sqrt{n}\rfloor\) divides \(n\).

Show Hint
Let \(\lfloor\sqrt{n}\rfloor = k\), so \(k^2 \leq n < (k+1)^2\). Count the multiples of \(k\) in \([k^2,\, (k+1)^2 - 1]\) for each valid \(k\) from 1 to 31.