Welcome to the World of Linear Equations!

Hello there! Today, we are going to dive into the Solution of Linear Equations. Don't let the name scare you—solving these is essentially like being a detective. You are given a set of clues (equations), and your job is to find the "missing person" (the values of \(x\) and \(y\)).

In Further Mathematics, we take the basic algebra you already know and give it some "superpowers" using Matrices and Logarithms. Whether you find math a bit tricky or you’re a total pro, these notes will guide you through the process step-by-step. Let’s get started!


1. Solving Equations Using Matrices

When we have two equations like \(ax + by = e\) and \(cx + dy = f\), we can represent them as a single matrix equation:

\( \begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} e \\ f \end{pmatrix} \)

In shorthand, we call this \( \mathbf{AX = B} \), where:

  • A is the matrix of coefficients (the numbers in front of \(x\) and \(y\)).
  • X is the column of variables we want to find.
  • B is the column of results (the numbers on the other side of the equals sign).

How to solve for X?

In normal arithmetic, to solve \(5x = 10\), you would divide by 5. In the world of matrices, you cannot divide! Instead, we use the Inverse Matrix, written as \( \mathbf{A^{-1}} \). Multiplying by the inverse is the matrix equivalent of dividing.

To find \(X\), we use the formula: \( \mathbf{X = A^{-1}B} \)

Step-by-Step: Finding the 2x2 Inverse

To find the inverse of \( \mathbf{A} = \begin{pmatrix} a & b \\ c & d \end{pmatrix} \):

1. Find the Determinant (let's call it \(\Delta\)): \( \Delta = ad - bc \)

2. Swap the positions of \(a\) and \(d\).

3. Change the signs of \(b\) and \(c\) (make them negative if they were positive, and vice versa).

4. Multiply the whole thing by \( \frac{1}{\Delta} \).

\( \mathbf{A^{-1}} = \frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix} \)

Quick Review: If the Determinant is zero, the matrix is called Singular. This means it has no inverse, and the equations might not have a unique solution. If the determinant is not zero, the matrix is Non-singular.


2. Reducing Relations to Linear Law

Sometimes, equations don't look linear. They might have powers like \(x^2\) or even be exponential. However, we can use a "mathematical disguise" to turn them into straight lines (linear graphs).

The goal is to make the equation look like the standard straight-line form: \( Y = mX + c \)

Example A: The Power Law \( y = ax^n \)

If we have \( y = ax^n \), we can apply Logarithms to both sides:

\( \log_{10} y = \log_{10}(ax^n) \)

\( \log_{10} y = \log_{10} a + n\log_{10} x \)

If you plot \( \log y \) on the vertical axis and \( \log x \) on the horizontal axis, you get a straight line where:

  • The gradient (\(m\)) is \(n\).
  • The Y-intercept (\(c\)) is \(\log a\).

Example B: The Exponential Law \( y = ab^x \)

Using logs again:

\( \log y = \log a + x\log b \)

If you plot \( \log y \) against \( x \), you get a straight line where:

  • The gradient (\(m\)) is \(\log b\).
  • The Y-intercept (\(c\)) is \(\log a\).

Analogy: Imagine a curvy slide. If you look at it through "Logarithmic Glasses," the slide suddenly appears perfectly straight and flat! This makes it much easier to measure its slope and starting point.

Key Takeaway: By choosing the right values to plot on your axes (like \( \log y \) and \( \log x \), or \( y^2 \) and \( x^3 \)), you can turn complex curves into simple lines to find unknown constants \(a\) and \(b\).


3. Important Properties of Matrix Algebra

When working with 3x3 matrices or solving linear systems, keep these rules in mind to avoid common mistakes:

  • Order Matters! In regular math, \( 2 \times 3 = 3 \times 2 \). In matrices, \( \mathbf{AB} \) is usually NOT equal to \( \mathbf{BA} \). Always multiply in the correct order!
  • The Identity Matrix (\( \mathbf{I} \)): This is the matrix version of the number 1. It has 1s on the main diagonal and 0s everywhere else. \( \mathbf{AI = A} \).
  • Transposing Products: A cool rule to remember is \( \mathbf{(AB)^T = B^T A^T} \). The order flips when you transpose!
  • Inverse of Products: Similarly, \( \mathbf{(AB)^{-1} = B^{-1} A^{-1}} \).

Common Mistake to Avoid: When moving a matrix to the other side of an equation, if it was on the left of the variable, its inverse must stay on the left.
If \( \mathbf{AX = B} \), then \( \mathbf{X = A^{-1}B} \).
If \( \mathbf{XA = B} \), then \( \mathbf{X = BA^{-1}} \).


4. Summary Checklist

Don't worry if this feels like a lot! Here is a quick summary of what you need to master for this chapter:

1. Matrix Representation: Can you turn simultaneous equations into the form \( \mathbf{AX=B} \)?

2. Determinants: Can you calculate \( ad - bc \)? Remember, if it's 0, you can't solve it using an inverse!

3. Inverses: Can you find \( \mathbf{A^{-1}} \) for a 2x2 matrix by swapping, changing signs, and dividing by the determinant?

4. Linear Law: Do you know how to use logs to turn \( y = ax^n \) into a straight line?

Did you know? Matrix algebra is the engine behind modern computer graphics! Every time a character moves in a video game, the computer is solving thousands of linear equations using matrices just like these.

Keep practicing! The more you "detect" those unknown variables, the more natural it will feel. You've got this!