7.1 Advanced Linear Equations, Systems, and Coordinate Geometry

Key Takeaways

  • Solving 3x3 linear systems requires systematic two-step elimination to reduce three equations in three variables down to a 2x2 system, solving for two variables, and back-substituting to determine the third.
  • Nonlinear systems (such as line-parabola or line-circle intersections) are solved by algebraic substitution, converting the system into a single quadratic equation where the discriminant (b² - 4ac) determines whether there are 2, 1 (tangent), or 0 real intersection points.
  • A 2x2 matrix determinant ad - bc governs system solvability: a non-zero determinant guarantees a unique solution, while a determinant of zero signifies either no solution (inconsistent, parallel lines) or infinitely many solutions (dependent, coincident lines).
  • Coordinate geometry formulas calculate Euclidean distance d = sqrt((x2 - x1)² + (y2 - y1)²), midpoint M = ((x1 + x2)/2, (y1 + y2)/2), and perpendicular bisector lines using negative reciprocal slopes m_perp = -1/m through the segment midpoint.
  • Circle equations in general form x² + y² + Dx + Ey + F = 0 are converted to standard form (x - h)² + (y - k)² = r² by completing the square separately for x and y terms to identify center (h, k) and radius r.
Last updated: August 2026

Advanced Linear Systems, Coordinate Geometry & Matrices

Core Foundation: The Next-Generation Advanced Algebra and Functions (AAF) assessment measures high-level algebraic reasoning, multi-variable system analysis, and coordinate geometry modeling. Mastery of algebraic elimination in three dimensions, matrix determinants, intersection geometry between linear and conic curves, and completing the square for circular loci is essential for achieving a college-ready placement score.


Systems of Three Linear Equations in Three Variables

A linear equation in three variables ($x, y, z$) has the standard form $Ax + By + Cz = D$ (where $A, B, C$ are not all zero). Geometrically, each linear equation in three variables represents a flat two-dimensional plane in three-dimensional space ($\mathbb{R}^3$).

+-------------------------------------------------------------------------+
|          GEOMETRIC INTERPRETATIONS OF 3×3 LINEAR SYSTEMS                |
+-------------------------------------------------------------------------+
|  1. UNIQUE SOLUTION (Consistent & Independent)                          |
|     Three planes intersect at exactly ONE single point (x, y, z).       |
|                                                                         |
|  2. INFINITELY MANY SOLUTIONS (Consistent & Dependent)                  |
|     Three planes intersect along a common line or are coincident.       |
|     Algebraic signature: 0 = 0 after elimination.                       |
|                                                                         |
|  3. NO SOLUTION (Inconsistent)                                          |
|     Planes are parallel or intersect in three pairwise parallel lines   |
|     forming a triangular prism with no shared intersection.             |
|     Algebraic signature: 0 = k (where k ≠ 0) after elimination.        |
+-------------------------------------------------------------------------+

The Systematic Elimination Algorithm for 3×3 Systems

To solve a $3 \times 3$ system algebraically without errors, follow this structured reduction protocol:

  1. Select a Target Variable: Choose the variable ($x, y$, or $z$) with the simplest coefficients (ideally coefficients of $\pm 1$).
  2. Pair the Equations: Use the chosen variable to create two distinct pairs of equations: Pair A (Equations 1 & 2) and Pair B (Equations 2 & 3, or Equations 1 & 3).
  3. Eliminate the Target Variable: Multiply each equation by appropriate constants so that the target variable cancels when the pairs are added, producing a $2 \times 2$ system in the remaining two variables.
  4. Solve the $2 \times 2$ System: Use elimination or substitution to find the numerical values of the two remaining variables.
  5. Back-Substitute: Substitute the two known values into any of the original three equations to solve for the target variable.
  6. Verify the Ordered Triple $(x, y, z)$: Check the candidate solution in all three original equations.

Worked Example: Solving a 3×3 System Step-by-Step

Solve the system of equations:

(1) \quad x + 2y + z &= 7 \\ (2) \quad 2x - y + 3z &= 12 \\ (3) \quad 3x + 3y - 2z &= 3 \end{align*}$$ * **Step 1: Eliminate $y$ using Equations (1) and (2).** Multiply Equation (2) by $2$: $$2(2x - y + 3z) = 2(12) \implies 4x - 2y + 6z = 24$$ Add to Equation (1): $$(x + 2y + z) + (4x - 2y + 6z) = 7 + 24 \implies 5x + 7z = 31 \quad \text{--- (Equation 4)}$$ * **Step 2: Eliminate $y$ using Equations (2) and (3).** Multiply Equation (2) by $3$: $$3(2x - y + 3z) = 3(12) \implies 6x - 3y + 9z = 36$$ Add to Equation (3): $$(3x + 3y - 2z) + (6x - 3y + 9z) = 3 + 36 \implies 9x + 7z = 39 \quad \text{--- (Equation 5)}$$ * **Step 3: Solve the resulting $2 \times 2$ system (Equations 4 & 5).** Subtract Equation (4) from Equation (5): $$(9x + 7z) - (5x + 7z) = 39 - 31$$ $$4x = 8 \implies x = 2$$ Substitute $x = 2$ into Equation (4): $$5(2) + 7z = 31 \implies 10 + 7z = 31 \implies 7z = 21 \implies z = 3$$ * **Step 4: Back-substitute $x = 2$ and $z = 3$ into Equation (1).** $$2 + 2y + 3 = 7 \implies 2y + 5 = 7 \implies 2y = 2 \implies y = 1$$ * **Step 5: Verification in Equation (2) & (3).** $2(2) - (1) + 3(3) = 4 - 1 + 9 = 12$ (True); $3(2) + 3(1) - 2(3) = 6 + 3 - 6 = 3$ (True). The unique solution is the ordered triple **$(2, 1, 3)$**. --- ## Nonlinear Systems: Intersections of Lines, Parabolas & Circles A **nonlinear system** contains at least one equation of degree two or higher. Solving nonlinear systems on the ACCUPLACER requires substituting linear expressions into quadratic expressions to locate shared coordinate points. ``` +-----------------------------------------------------------------------------------------+ | NONLINEAR SYSTEM INTERSECTION PROFILES | +-----------------------+---------------------------------+-------------------------------+ | System Configuration | Possible Real Solution Counts | Geometric Relationship | +-----------------------+---------------------------------+-------------------------------+ | Line & Parabola | 2 Solutions | Secant line (crosses twice) | | | 1 Solution | Tangent line (touches vertex) | | | 0 Solutions | Disjoint (no intersection) | +-----------------------+---------------------------------+-------------------------------+ | Line & Circle | 2 Solutions | Secant line (chords circle) | | | 1 Solution | Tangent line (touches rim) | | | 0 Solutions | Exterior line (no contact) | +-----------------------+---------------------------------+-------------------------------+ | Parabola & Parabola | 0, 1, 2, 3, or 4 Solutions | Intersecting conic sections | +-----------------------+---------------------------------+-------------------------------+ ``` ### Line-Parabola Intersection Methodology 1. Express the linear equation in terms of one variable (e.g., $y = mx + b$). 2. Substitute the linear expression into the quadratic parabola equation $y = ax^2 + bx + c$. 3. Set the resulting quadratic equation to zero: $ax^2 + (b - m)x + (c - b_0) = 0$. 4. Evaluate the **discriminant** $\Delta = B^2 - 4AC$: - $\Delta > 0$: 2 distinct real intersection points. - $\Delta = 0$: 1 real intersection point (the line is **tangent** to the parabola). - $\Delta < 0$: 0 real intersection points (the curves never cross in the real plane). 5. Solve for $x$ and compute corresponding $y$-values using the linear equation. #### Worked Example: Line-Parabola Intersection Find all intersection points of the system: $$\begin{cases} y = 2x - 1 \\ y = x^2 - 3x + 5 \end{cases}$$ - **Step 1 (Equate expressions):** $x^2 - 3x + 5 = 2x - 1$. - **Step 2 (Form standard quadratic):** $x^2 - 5x + 6 = 0$. - **Step 3 (Factor):** $(x - 2)(x - 3) = 0 \implies x = 2 \quad \text{or} \quad x = 3$. - **Step 4 (Find corresponding $y$-coordinates):** - For $x = 2$: $y = 2(2) - 1 = 3 \implies (2, 3)$ - For $x = 3$: $y = 2(3) - 1 = 5 \implies (3, 5)$ - The solution set is $\{ (2, 3), (3, 5) \}$. --- ## Absolute Value Inequalities in Two Variables An **absolute value inequality in two variables** represents a two-dimensional shaded region in the Cartesian coordinate plane bounded by a V-shaped graph: $$y \ge a|x - h| + k \quad \text{or} \quad y < a|x - h| + k$$ ### Graphing and Boundary Rules 1. **Vertex and Axis of Symmetry:** The boundary vertex is at $(h, k)$. The vertical line $x = h$ is the axis of symmetry. 2. **Slopes of the V-Arms:** The right ray has slope $+a$; the left ray has slope $-a$. If $a < 0$, the V-shape opens downward. 3. **Boundary Line Style:** - Strict inequalities ($<, >$): Draw a **dashed boundary line** (points on the V are excluded). - Non-strict inequalities ($\le, \ge$): Draw a **solid boundary line** (points on the V are included). 4. **Shading Region Test:** - For $y > |x - h| + k$ or $y \ge |x - h| + k$: Shade the region **above** (inside) the V-shape. - For $y < |x - h| + k$ or $y \le |x - h| + k$: Shade the region **below** (outside) the V-shape. - Confirm with a test point such as $(0, 0)$ (provided $(0,0)$ does not lie directly on the boundary). --- ## Matrix Representations and Determinants for 2×2 Systems A system of two linear equations in two variables: $$\begin{cases} ax + by = e \\ cx + dy = f \end{cases}$$ can be written in matrix form as $A\mathbf{x} = \mathbf{b}$: $$\begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} e \\ f \end{pmatrix}$$ ### The 2×2 Matrix Determinant The **determinant** of the coefficient matrix $A$, denoted $\det(A)$ or $|A|$, is defined as: $$\det(A) = \begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc$$ ``` +-------------------------------------------------------------------------+ | DETERMINANT SOLVABILITY CLASSIFICATION | +-----------------------+-----------------------+-------------------------+ | Determinant Value | System Nature | Graphical Geometry | +-----------------------+-----------------------+-------------------------+ | det(A) = ad - bc ≠ 0 | Unique Solution | Intersecting Lines | | | (Consistent/Indep.) | (Single (x, y) point) | +-----------------------+-----------------------+-------------------------+ | det(A) = 0 and | No Solution | Parallel Lines | | (af - ce ≠ 0) | (Inconsistent) | (Never intersect) | +-----------------------+-----------------------+-------------------------+ | det(A) = 0 and | Infinitely Many | Coincident Lines | | (af - ce = 0) | (Consistent/Dep.) | (Identical graph line) | +-----------------------+-----------------------+-------------------------+ ``` ### Cramer's Rule for 2×2 Systems When $\det(A) = D = ad - bc \neq 0$, the exact solution is given by: $$x = \frac{D_x}{D} = \frac{\begin{vmatrix} e & b \\ f & d \end{vmatrix}}{ad - bc} = \frac{ed - bf}{ad - bc}, \qquad y = \frac{D_y}{D} = \frac{\begin{vmatrix} a & e \\ c & f \end{vmatrix}}{ad - bc} = \frac{af - ce}{ad - bc}$$ --- ## Coordinate Geometry Foundations Coordinate geometry unifies algebraic equations with Euclidean spatial metrics. ### Essential Coordinate Geometry Formulas | Concept / Metric | Mathematical Formula | Key Application / Notes | | :--- | :--- | :--- | | **Distance Formula** | $d = \sqrt{(x_2 - x_1)^2 + (y_2 - y_1)^2}$ | Derived directly from the Pythagorean theorem ($a^2 + b^2 = c^2$) | | **Midpoint Formula** | $M = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)$ | Arithmetic average of $x$-coordinates and $y$-coordinates | | **Slope of a Line** | $m = \frac{y_2 - y_1}{x_2 - x_1} \quad (x_1 \neq x_2)$ | Vertical change over horizontal change (rise over run) | | **Parallel Lines Slope** | $m_1 = m_2$ | Equal slopes with distinct $y$-intercepts | | **Perpendicular Slope** | $m_1 \cdot m_2 = -1 \iff m_2 = -\frac{1}{m_1}$ | Slopes are negative reciprocals of each other | | **Standard Form of Circle** | $(x - h)^2 + (y - k)^2 = r^2$ | Center $(h, k)$, radius $r = \sqrt{r^2}$ | ### Perpendicular Bisector Protocol The **perpendicular bisector** of a line segment connecting points $A(x_1, y_1)$ and $B(x_2, y_2)$ is the unique line that is perpendicular to segment $AB$ and passes through its midpoint. 1. **Find the Midpoint ($M$):** Compute $M = \left(\frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2}\right)$. 2. **Find the Slope of the Segment ($m_{AB}$):** Compute $m_{AB} = \frac{y_2 - y_1}{x_2 - x_1}$. 3. **Determine the Perpendicular Slope ($m_\perp$):** Compute $m_\perp = -\frac{1}{m_{AB}}$. 4. **Form the Linear Equation:** Use point-slope form with $M(x_m, y_m)$ and $m_\perp$: $$y - y_m = m_\perp(x - x_m)$$ #### Worked Example: Equation of a Perpendicular Bisector Find the equation of the perpendicular bisector of the segment connecting $A(-2, 5)$ and $B(4, -3)$. - **Step 1 (Midpoint):** $M = \left(\frac{-2 + 4}{2}, \frac{5 + (-3)}{2}\right) = \left(\frac{2}{2}, \frac{2}{2}\right) = (1, 1)$. - **Step 2 (Slope of $AB$):** $m_{AB} = \frac{-3 - 5}{4 - (-2)} = \frac{-8}{6} = -\frac{4}{3}$. - **Step 3 (Perpendicular slope):** $m_\perp = -\frac{1}{-4/3} = +\frac{3}{4}$. - **Step 4 (Point-slope equation):** $y - 1 = \frac{3}{4}(x - 1) \implies y = \frac{3}{4}x - \frac{3}{4} + 1 \implies y = \frac{3}{4}x + \frac{1}{4}$ (or $3x - 4y = -1$). --- ## Circles: Standard Form and Completing the Square The general second-degree equation for a circle in the Cartesian plane is: $$x^2 + y^2 + Dx + Ey + F = 0$$ To graph the circle or find its center $(h, k)$ and radius $r$, you must rewrite this into standard form: $$(x - h)^2 + (y - k)^2 = r^2$$ ### Step-by-Step Completing the Square for Circles 1. **Group Terms:** Group $x$-terms together, group $y$-terms together, and subtract the constant $F$ to the right side: $$(x^2 + Dx) + (y^2 + Ey) = -F$$ 2. **Complete the Square for $x$ and $y$:** - Add $\left(\frac{D}{2}\right)^2$ inside the $x$-group and to the right side. - Add $\left(\frac{E}{2}\right)^2$ inside the $y$-group and to the right side. $$(x^2 + Dx + (D/2)^2) + (y^2 + Ey + (E/2)^2) = -F + (D/2)^2 + (E/2)^2$$ 3. **Factor into Binomial Squares:** $$\left(x + \frac{D}{2}\right)^2 + \left(y + \frac{E}{2}\right)^2 = r^2$$ 4. **Extract Center and Radius:** Center is $\left(-\frac{D}{2}, -\frac{E}{2}\right)$ and radius is $r = \sqrt{r^2}$ (where $r^2 > 0$).
Loading diagram...
Systems & Coordinate Geometry Decision Flowchart
Test Your Knowledge

For what value of the constant $k$ will the system of linear equations have infinitely many solutions? {3x2y=76x+ky=14\begin{cases} 3x - 2y = 7 \\ 6x + ky = 14 \end{cases}

A
B
C
D
Test Your Knowledge

What is the center $(h, k)$ and radius $r$ of the circle defined by the general equation $x^2 + y^2 + 10x - 4y - 7 = 0$?

A
B
C
D
Test Your Knowledge

How many real intersection points do the line $y = 3x - 5$ and the parabola $y = 2x^2 - x - 3$ share?

A
B
C
D