HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-02-28
1 <p>There are many methods for solving linear equations. Some of the methods are: </p>
1 <p>There are many methods for solving linear equations. Some of the methods are: </p>
2 <ul><li>Graphical Method</li>
2 <ul><li>Graphical Method</li>
3 <li>Elimination Method</li>
3 <li>Elimination Method</li>
4 <li>Substitution Method</li>
4 <li>Substitution Method</li>
5 <li>Cross Multiplication Method</li>
5 <li>Cross Multiplication Method</li>
6 <li>Matrix Method</li>
6 <li>Matrix Method</li>
7 <li>Determinants Method (Cramer’s Rule) </li>
7 <li>Determinants Method (Cramer’s Rule) </li>
8 </ul><p><strong>Graphical Method</strong></p>
8 </ul><p><strong>Graphical Method</strong></p>
9 <p>For solving linear equations in a graphical method, we draw the equations as a line on a graph. The point where the two lines cross or intersect is the answer.</p>
9 <p>For solving linear equations in a graphical method, we draw the equations as a line on a graph. The point where the two lines cross or intersect is the answer.</p>
10 <p>Example: \(y = 2x + 1\) \(y = x + 3\)</p>
10 <p>Example: \(y = 2x + 1\) \(y = x + 3\)</p>
11 <p>Plot both lines on the graph. Where they meet is the answer. If they meet at (2, 5), that means x = 2 and y = 5 is the solution.</p>
11 <p>Plot both lines on the graph. Where they meet is the answer. If they meet at (2, 5), that means x = 2 and y = 5 is the solution.</p>
12 <p><strong>Elimination Method</strong></p>
12 <p><strong>Elimination Method</strong></p>
13 <p>In this method, we add or subtract two equations to cancel out one variable, allowing us to find the value of the remaining variable. </p>
13 <p>In this method, we add or subtract two equations to cancel out one variable, allowing us to find the value of the remaining variable. </p>
14 <p>Example: \(x + y = 10\) \(x - y = 4\) Add both equations, \((x + y) + (x - y) = 10 + 4\) \(2x = 14\) \(x = 7\) Now put x = 7 in the first equation: \(7 + y = 10\) \(y = 3\) So the final answer is \(x = 7, y = 3\)</p>
14 <p>Example: \(x + y = 10\) \(x - y = 4\) Add both equations, \((x + y) + (x - y) = 10 + 4\) \(2x = 14\) \(x = 7\) Now put x = 7 in the first equation: \(7 + y = 10\) \(y = 3\) So the final answer is \(x = 7, y = 3\)</p>
15 <p><strong>Substitution Method</strong></p>
15 <p><strong>Substitution Method</strong></p>
16 <p>Substitution method means solving one equation to find one variable and then substituting it into the other.</p>
16 <p>Substitution method means solving one equation to find one variable and then substituting it into the other.</p>
17 <p>Example: Solve the system: (1) \(y = x + 2\) (2) \(x + y = 10\)</p>
17 <p>Example: Solve the system: (1) \(y = x + 2\) (2) \(x + y = 10\)</p>
18 <p><strong>Step 1:</strong>Use equation (1) to substitute for y in equation (2): \(x + (x + 2) = 10\)</p>
18 <p><strong>Step 1:</strong>Use equation (1) to substitute for y in equation (2): \(x + (x + 2) = 10\)</p>
19 <p><strong>Step 2:</strong>simplify the equation \(2x + 2 = 10\) \(2x = 8\) \(x = 4\)</p>
19 <p><strong>Step 2:</strong>simplify the equation \(2x + 2 = 10\) \(2x = 8\) \(x = 4\)</p>
20 <p><strong>Step 3:</strong>Substitute \(x = 4\) back into equation (1): \(y = 4 + 2 = 6\) Answer: \(x = 4, y = 6\)</p>
20 <p><strong>Step 3:</strong>Substitute \(x = 4\) back into equation (1): \(y = 4 + 2 = 6\) Answer: \(x = 4, y = 6\)</p>
21 <p><strong>Cross Multiplication Method</strong></p>
21 <p><strong>Cross Multiplication Method</strong></p>
22 <p>For solving linear equations using the<a>cross multiplication</a>method, we use<a>formulas</a>. The formula for solving two equations in the form of:</p>
22 <p>For solving linear equations using the<a>cross multiplication</a>method, we use<a>formulas</a>. The formula for solving two equations in the form of:</p>
23 <p>\(a_1x + b_1y = c_1\)</p>
23 <p>\(a_1x + b_1y = c_1\)</p>
24 <p>\(a_2x + b_2y = c_2\)</p>
24 <p>\(a_2x + b_2y = c_2\)</p>
25 <p>\(x = \frac{(b1c2 - b2c1)}{(a1b2 - a2b1)}, y = \frac{(c1a2 - c2a1)}{(a1b2 - a2b1)}\)</p>
25 <p>\(x = \frac{(b1c2 - b2c1)}{(a1b2 - a2b1)}, y = \frac{(c1a2 - c2a1)}{(a1b2 - a2b1)}\)</p>
26 <p><strong>Matrix Method</strong></p>
26 <p><strong>Matrix Method</strong></p>
27 <p>A matrix method is a neat way to write equations in rows and columns. Let's see this using an example.</p>
27 <p>A matrix method is a neat way to write equations in rows and columns. Let's see this using an example.</p>
28 <p>\(x + y = 6\) \(2x + 3y = 14\)</p>
28 <p>\(x + y = 6\) \(2x + 3y = 14\)</p>
29 <p>Write this in a matrix form as: </p>
29 <p>Write this in a matrix form as: </p>
30 <p>\( A = \begin{bmatrix} 1 &amp; 1 \\ 2 &amp; 3 \end{bmatrix}, \quad X = \begin{bmatrix} x \\ y \end{bmatrix}, \quad B = \begin{bmatrix} 6 \\ 14 \end{bmatrix} \)</p>
30 <p>\( A = \begin{bmatrix} 1 &amp; 1 \\ 2 &amp; 3 \end{bmatrix}, \quad X = \begin{bmatrix} x \\ y \end{bmatrix}, \quad B = \begin{bmatrix} 6 \\ 14 \end{bmatrix} \)</p>
31 <p>Now use the formula: \(AX = B\) \(X = A^{-1}B\)</p>
31 <p>Now use the formula: \(AX = B\) \(X = A^{-1}B\)</p>
32 <p>Once we substitute the values and solve the equation, we get \(x = 4, y = 2\).</p>
32 <p>Once we substitute the values and solve the equation, we get \(x = 4, y = 2\).</p>
33 <p><strong>Determinants Method (Cramer’s Rule)</strong></p>
33 <p><strong>Determinants Method (Cramer’s Rule)</strong></p>
34 <p>This method uses<a>determinants</a>, which are specific numerical values calculated from<a>square</a>matrices and help in solving systems<a>of equations</a>.</p>
34 <p>This method uses<a>determinants</a>, which are specific numerical values calculated from<a>square</a>matrices and help in solving systems<a>of equations</a>.</p>
35 <p>Example: \(2x + 3y = 12\) \(x - y = 1\)</p>
35 <p>Example: \(2x + 3y = 12\) \(x - y = 1\)</p>
36 <p>We find three determinants: \( \Delta \) from coefficients \(\Delta_1\) replace the first column with answer numbers \(\Delta_2\) replace second column with answer numbers</p>
36 <p>We find three determinants: \( \Delta \) from coefficients \(\Delta_1\) replace the first column with answer numbers \(\Delta_2\) replace second column with answer numbers</p>
37 <p>\(x = \frac{\Delta_1}{\Delta}, y =\frac{\Delta_2}{\Delta}\)</p>
37 <p>\(x = \frac{\Delta_1}{\Delta}, y =\frac{\Delta_2}{\Delta}\)</p>
38  
38