A linear equation in n variables \(x_1, x_2, \ldots, x_n\) is of the form:
\[ a_1 x_1 + a_2 x_2 + \ldots + a_n x_n = b \]
where \(a_1, a_2, \ldots, a_n\) are coefficients, \(x_1, x_2, \ldots, x_n\) are variables, and \(b\) is a constant.
A system of linear equations is a set of such equations, for example:
\[ \begin{cases} a_{11}x_1 + a_{12}x_2 + \ldots + a_{1n}x_n = b_1 \\ a_{21}x_1 + a_{22}x_2 + \ldots + a_{2n}x_n = b_2 \\ \vdots \\ a_{m1}x_1 + a_{m2}x_2 + \ldots + a_{mn}x_n = b_m \end{cases} \]
Any set of values of \(x_1, x_2, \ldots, x_n\) which simultaneously satisfies the system of linear equations given above is called a solution of the system. If the system of equations has one or more solutions, the equations are called consistent. Also, if the system of equations does not admit any solution, then the equations are called inconsistent.
Consider the system of equations \(AX = B\) and these equations are said to be Homogeneous if \(B = 0\) and Non-homogeneous if \(B \neq 0\).
The following methods of solving system of linear equations \(AX = B\), are applicable only when the coefficient matrix \(A\) is non-singular, i.e., \(|A| \neq 0\).
Cramer's method
Inverse method
Gauss-Jordan method
Gauss Elimination method
LU Decomposition method of factorisation (or) Method of Triangularisation
The system of linear equations in two variables is the set of equations that contain only two variables. For example, \(2x + 3y = 4\); \(3x + 5y = 12\) are the system of equations in two variables. There are several methods of solving linear equations in two variables, such as:
Graphical method
Substitution Method
Elimination Method
Cross-Multiplication Method
Matrix method
There are several methods to solve linear systems of equations:
Suitable for systems with two variables.
Each equation is represented as a line on a graph.
The solution is the point(s) where the lines intersect.
Solve one of the equations for one variable in terms of the others.
Substitute this expression into the other equations.
Repeat until you solve for all variables.
Add or subtract equations to eliminate one variable.
Continue the process to solve for the remaining variables.
Represent the system as a matrix equation \(AX = B\).
Use matrix operations to solve for the variable matrix \(X\).
Convert the system to an upper triangular form using row operations.
Back-substitute to find the solutions.