Difference between revisions of "System of equations"
(→Graphing) |
Pi is 3.14 (talk | contribs) (→Solving Linear Systems) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | A ''' | + | A '''system of equations''' is a set of [[equation]]s which share the same [[variable]]s. Below is an example of a system of equations. |
− | { | + | <cmath>\left\{\begin{array}{l}a^2 + b^2 = 25\\a+b=7\end{array}\right.</cmath> |
− | + | ||
− | + | ==Solve 2 variable equations in less than 5 seconds!!!== | |
− | + | Video Link: https://youtu.be/pSYT95hSH6M | |
− | |||
== Solving Linear Systems == | == Solving Linear Systems == | ||
Line 16: | Line 15: | ||
Find the ordered pair <math>(x,y)</math> for which | Find the ordered pair <math>(x,y)</math> for which | ||
− | + | <cmath>\left\{\begin{array}{l}x-12y=2\\3x+6y=6\end{array}\right.</cmath> | |
− | |||
− | |||
− | |||
− | |||
==== Solution ==== | ==== Solution ==== | ||
Line 33: | Line 28: | ||
|} | |} | ||
− | Thus <math>x=2</math>. We can then plug in for <math>x</math> in either of the equations: | + | Thus <math>x=2</math>. We can then plug in for <math>x</math> in either of the equations: |
+ | <cmath>\begin{align*} | ||
+ | (2)-12y &= 2 \\ | ||
+ | y &= 0 | ||
+ | \end{align*}</cmath> | ||
Thus, the solution to the system is <math>(2,0)</math>. | Thus, the solution to the system is <math>(2,0)</math>. | ||
Line 43: | Line 42: | ||
Find the ordered pair <math>(x,y)</math> for which | Find the ordered pair <math>(x,y)</math> for which | ||
− | + | <cmath>\left\{\begin{array}{l}x-12y=2\\3x+6y=6\end{array}\right.</cmath> | |
− | |||
− | |||
− | |||
− | |||
==== Solution ==== | ==== Solution ==== | ||
Line 62: | Line 57: | ||
Find the ordered pair <math>(x,y)</math> for which | Find the ordered pair <math>(x,y)</math> for which | ||
− | + | <cmath>\left\{\begin{array}{l}x-12y=2\\3x+6y=6\end{array}\right.</cmath> | |
− | |||
− | |||
− | |||
− | |||
==== Solution ==== | ==== Solution ==== | ||
Line 79: | Line 70: | ||
== Convenient Systems == | == Convenient Systems == | ||
− | |||
− | === | + | Some systems can be solved by taking advantage of specific forms. Such systems can often seem tough to solve at first, however. |
− | + | ||
+ | ===Symmetry=== | ||
+ | |||
+ | Consider the below system. | ||
− | + | <cmath>\left\{\begin{array}{l}a+b+c+d=4\\a+b+c+e=8\\a+b+d+e=12\\a+c+d+e=16\\b+c+d+e=20\end{array}\right.</cmath> | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
The key here is to take advantage of the [[symmetry]]. If we add up all 5 equations we will have a total of 4 of each variable on the [[LHS]]. On the [[RHS]] we will have <math>4+8+12+16+20 = 60</math>. Thus <center><math> 4(a+b+c+d+e) = 60 \Leftrightarrow a + b + c + d + e = 15. </math></center> | The key here is to take advantage of the [[symmetry]]. If we add up all 5 equations we will have a total of 4 of each variable on the [[LHS]]. On the [[RHS]] we will have <math>4+8+12+16+20 = 60</math>. Thus <center><math> 4(a+b+c+d+e) = 60 \Leftrightarrow a + b + c + d + e = 15. </math></center> | ||
− | So then subtracting the first equation from this leaves <math>e</math> on the LHS and <math>15-4=11</math> on the RHS. Subtracting this equation from the second equation leaves <math>d</math> on the LHS and <math>15-8=7</math> on the RHS. And thus we continue on in this way to find that <math>(a,b,c,d,e)=( | + | So then subtracting the first equation from this leaves <math>e</math> on the LHS and <math>15-4=11</math> on the RHS. Subtracting this equation from the second equation leaves <math>d</math> on the LHS and <math>15-8=7</math> on the RHS. And thus we continue on in this way to find that <math>(a,b,c,d,e)=(-5,-1,3,7,11).</math> |
+ | |||
+ | ===Clever Substitution=== | ||
+ | |||
+ | Consider the below system. | ||
+ | |||
+ | <cmath>\left\{\begin{array}{l}x+y+3xy = 5\\ 2x+2y+4xy=8 \end{array}\right.</cmath> | ||
+ | |||
+ | We can let <math>x+y=a</math> and <math>b = xy</math> to get the two-variable linear system below. | ||
+ | |||
+ | <cmath>\left\{\begin{array}{l}a+3b = 5\\ 2a+4b=8 \end{array}\right.</cmath> | ||
+ | |||
+ | Solving the system results in <math>b = 1</math> and <math>a = 2</math>. Substituting that back results in <math>xy = 1</math> and <math>x + y = 2</math>. We can do another substitution by letting <math>y = 2 - x</math> and substituting to get <math>x(2-x) = 1</math>. Rearranging results in <math>0 = x^2 - 2x + 1</math>, so <math>x = 1</math>. Finally, by substituting <math>x</math> back in, we get <math>y = 1</math>. Plugging <math>(1,1)</math> back satisfies the system. | ||
+ | |||
+ | == Problems == | ||
+ | |||
+ | === Introductory === | ||
+ | |||
+ | * [[2002 AMC 8 Problems/Problem 17]] | ||
+ | * [[2007 iTest Problems/Problem 2]] | ||
+ | |||
+ | === Intermediate === | ||
+ | |||
+ | * [[1989 AIME Problems/Problem 8]] | ||
+ | * [[1993 AIME Problems/Problem 3]] | ||
− | == See | + | == See Also == |
* [[Algebra]] | * [[Algebra]] | ||
+ | * [[Substitution]] | ||
+ | |||
+ | [[Category:Algebra]] |
Latest revision as of 22:27, 30 July 2020
A system of equations is a set of equations which share the same variables. Below is an example of a system of equations.
Contents
Solve 2 variable equations in less than 5 seconds!!!
Video Link: https://youtu.be/pSYT95hSH6M
Solving Linear Systems
A system of linear equations is where all of the variables are to the power 1. There are three elementary ways to solve a system of linear equations.
Gaussian Elimination
Gaussian elimination involves eliminating variables from the system by adding constant multiples of two or more of the equations together. Let's look at an example:
Problem
Find the ordered pair for which
Solution
We can eliminate by adding twice the second equation to the first:
Thus . We can then plug in for in either of the equations:
Thus, the solution to the system is .
Substitution
The second method, substitution, requires solving for a variable and then plugging that variable into another equation therefore reducing the number of variables. We'll show how to solve the same problem from the elimination section using substitution.
Problem
Find the ordered pair for which
Solution
The first equation can be solved for :
Plugging this into the second equation yields
Thus . Plugging this into either of the equations and solving for yields .
Graphing
The third method for solving a system of linear equations is to graph them in the plane and observe where they intersect. We'll go back to our same example to illustrate this.
Problem
Find the ordered pair for which
Solution
We graph the two lines as follows:
From the graph, we can see that the solution to the system is .
Advanced Methods
Matrices can also be used to solve systems of linear equations. In fact, they provide a way to make much broader statements about systems of linear equations.
There is a whole field of mathematics devoted to the study of linear equations called linear algebra.
Convenient Systems
Some systems can be solved by taking advantage of specific forms. Such systems can often seem tough to solve at first, however.
Symmetry
Consider the below system.
The key here is to take advantage of the symmetry. If we add up all 5 equations we will have a total of 4 of each variable on the LHS. On the RHS we will have . Thus
So then subtracting the first equation from this leaves on the LHS and on the RHS. Subtracting this equation from the second equation leaves on the LHS and on the RHS. And thus we continue on in this way to find that
Clever Substitution
Consider the below system.
We can let and to get the two-variable linear system below.
Solving the system results in and . Substituting that back results in and . We can do another substitution by letting and substituting to get . Rearranging results in , so . Finally, by substituting back in, we get . Plugging back satisfies the system.