#set document(title: "5.1 Solve Systems of Equations by Graphing", author: "OpenStax / XYZ Homework") #set page(width: 8.5in, height: auto, margin: 1in) #import "@preview/cetz:0.5.2" #set text(font: ("STIX Two Text", "Libertinus Serif", "New Computer Modern"), size: 10.5pt, lang: "en") #show math.equation: set text(font: ("STIX Two Math", "New Computer Modern Math")) #set par(justify: true, leading: 0.62em, spacing: 0.9em) #set enum(spacing: 1.1em) // room between list items so tall inline fractions don't collide #set list(spacing: 1.1em) #set table(stroke: 0.5pt + rgb("#c7ccd3")) #let BLUE = rgb("#183B6F") // brand navy — section bars + example/solution labels (white on navy 11.09:1) #let ORANGE = rgb("#A94509") // brand primary-700 — AA-safe deep orange for TEXT (5.93:1 on white; raw brand #F37021 is 2.94:1 and must never carry text) #let RED = rgb("#DC2626") // brand error-600 #let GREEN = rgb("#059669") // brand success-600 (decoration only; small green text uses green-text #007942) #show heading.where(level: 1): it => block(width: 100%, above: 0pt, below: 16pt, fill: gradient.linear(BLUE, rgb("#2C5AA0")), inset: (x: 14pt, y: 12pt), radius: 3pt, text(fill: white, weight: "bold", size: 19pt, it.body)) #show heading.where(level: 2): it => block(width: 100%, above: 18pt, below: 10pt, fill: BLUE, inset: (x: 10pt, y: 6pt), radius: 2pt, text(fill: white, weight: "bold", size: 12pt, it.body)) #show heading.where(level: 3): it => text(fill: ORANGE, weight: "bold", size: 12.5pt, it.body) #show heading.where(level: 4): it => text(fill: BLUE, weight: "bold", size: 10.5pt, it.body) #let examplebox(label, title, body) = block(width: 100%, breakable: true, fill: rgb("#EFF1F5"), stroke: 0.5pt + rgb("#CFDDF0"), radius: 4pt, inset: 10pt, above: 12pt, below: 12pt)[ #block(below: 6pt)[#box(fill: BLUE, inset: (x: 6pt, y: 2pt), radius: 2pt, text(fill: white, weight: "bold", size: 8.5pt, label)) #h(0.4em) #strong[#title]] #body] // rail = decorative left rule (raw brand token); labelcolor = AA-safe label text shade #let notebox(label, rail, labelcolor, tint, body) = block(width: 100%, breakable: true, fill: tint, stroke: (left: 3pt + rail), inset: (left: 10pt, rest: 8pt), radius: (right: 4pt), above: 11pt, below: 11pt)[ #text(fill: labelcolor, weight: "bold", size: 7.5pt, tracking: 0.5pt)[#upper(label)] #linebreak() #body] #let solutionbox(body) = block(above: 4pt, below: 8pt)[ #text(fill: BLUE, weight: "bold", size: 8.5pt)[Solution] #linebreak() #body] #let figph(msg) = block(width: 100%, height: 60pt, fill: rgb("#f6f7f9"), stroke: (paint: rgb("#c7ccd3"), dash: "dashed"), radius: 4pt, inset: 10pt)[ #align(center + horizon, text(fill: rgb("#889"), style: "italic", size: 9pt, msg))] // Standardize inlined figure sizes: measure the natural CeTZ canvas, then scale to a // consistent envelope (aspect-aware; see build_typst.py FIG_* constants). Unlike the // print preamble, dimensions are FLOORED: in an editor a user can trim a figure to a // degenerate 1-D shape (a bare line), and w/h or tw/w would then divide by zero. #let _STD_W = 3.5 #let _WIDE_W = 5.6 #let _MAX_H = 3.4 #let _ASPECT_WIDE = 2.2 #let _UPSCALE_MAX = 1.15 #let stdfig(body) = context { let m = measure(body) let w = calc.max(m.width / 1in, 0.01) let h = calc.max(m.height / 1in, 0.01) let tw = if w / h > _ASPECT_WIDE { _WIDE_W } else { _STD_W } let s = calc.min(tw / w, _MAX_H / h, _UPSCALE_MAX) align(center, box(scale(x: s * 100%, y: s * 100%, reflow: true, body))) } #show figure: set block(breakable: false) #set figure(gap: 8pt) #show figure.caption: set text(size: 8.5pt, fill: rgb("#555")) == 5.1#h(0.6em)Solve Systems of Equations by Graphing #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Before you get started, take this readiness quiz. For the equation #math.equation(block: false, alt: "y equals the fraction 2 over 3 x minus 4")[$y = frac(2, 3) x − 4$] #linebreak() ⓐ is #math.equation(block: false, alt: "open parenthesis 6 , 0 close parenthesis")[$( 6 , 0 )$] a solution? ⓑ is #math.equation(block: false, alt: "open parenthesis −3 , −2 close parenthesis")[$( −3 , −2 )$] a solution? #linebreak() If you missed this problem, review . #solutionbox[ (a) yes (b) no ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the slope and #emph[y]-intercept of the line #math.equation(block: false, alt: "3 x minus y equals 12")[$3 x − y = 12$]. #linebreak() If you missed this problem, review . #solutionbox[ #math.equation(block: true, alt: "m equals 3 ;")[$m = 3 ;$] #math.equation(block: true, alt: "b equals minus 12")[$b = − 12$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Find the #emph[x]- and #emph[y]-intercepts of the line #math.equation(block: false, alt: "2 x minus 3 y equals 12")[$2 x − 3 y = 12$]. #linebreak() If you missed this problem, review . #solutionbox[ #math.equation(block: true, alt: "open parenthesis 6 , 0 close parenthesis , open parenthesis 0 , minus 4 close parenthesis")[$( 6 , 0 ) , " " ( 0 , − 4 )$] ] ] === Determine Whether an Ordered Pair is a Solution of a System of Equations In Solving Linear Equations and Inequalities we learned how to solve linear equations with one variable. Remember that the solution of an equation is a value of the variable that makes a true statement when substituted into the equation. Now we will work with #strong[systems of linear equations], two or more linear equations grouped together. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[System of Linear Equations] When two or more linear equations are grouped together, they form a system of linear equations. ] We will focus our work here on systems of two linear equations in two unknowns. Later, you may solve larger systems of equations. An example of a system of two linear equations is shown below. We use a brace to show the two equations are grouped together to form a system of equations. #math.equation(block: true, alt: "{ 2 x plus y equals 7; x minus 2 y equals 6")[$\{ 2 x + y = 7 \ x − 2 y = 6$]A linear equation in two variables, like 2#emph[x] + #emph[y] = 7, has an infinite number of solutions. Its graph is a line. Remember, every point on the line is a solution to the equation and every solution to the equation is a point on the line. To solve a system of two linear equations, we want to find the values of the variables that are solutions to both equations. In other words, we are looking for the ordered pairs (#emph[x], #emph[y]) that make both equations true. These are called the #strong[solutions to a system of equations]. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Solutions of a System of Equations] #strong[Solutions of a system of equations] are the values of the variables that make all the equations true. A solution of a system of two linear equations is represented by an ordered pair (#emph[x], #emph[y]). ] To determine if an ordered pair is a solution to a system of two equations, we substitute the values of the variables into each equation. If the ordered pair makes both equations true, it is a solution to the system. Let’s consider the system below: #math.equation(block: true, alt: "{ 3 x minus y equals 7; x minus 2 y equals 4")[$\{ 3 x − y = 7 \ x − 2 y = 4$]Is the ordered pair #math.equation(block: false, alt: "open parenthesis 2 , −1 close parenthesis")[$( 2 , −1 )$] a solution? #figure(figph[This figure begins with a sentence, “We substitute x =2 and y = -1 into both equations.” The first equation shows that 3x minus y equals 7. Then 3 times 2 minus negative, in parentheses, equals 7. Then 7 equals 7 is true. The second equation reads x minus 2y equals 4. Then 2 minus 2 times negative one in parentheses equals 4. Then 4 = 4 is true.], alt: "This figure begins with a sentence, “We substitute x =2 and y = -1 into both equations.” The first equation shows that 3x minus y equals 7. Then 3 times 2 minus negative, in parentheses, equals 7. Then 7 equals 7 is true. The second equation reads x minus 2y equals 4. Then 2 minus 2 times negative one in parentheses equals 4. Then 4 = 4 is true.", caption: none) The ordered pair (2, −1) made both equations true. Therefore (2, −1) is a solution to this system. Let’s try another ordered pair. Is the ordered pair (3, 2) a solution? #figure(figph[This figure begins with the sentence, “We substitute x equals 3 and y equals 2 into both equations.” The first equation reads 3 times x minus 7equals 7. Then, 3 times 3 minus 2 equals 7. Then 7 = 7 is true. The second equation reads x minus 2y equals 4. The n times 2 minus 2 times 2 = 4. Then negative 1 = 4 is false.], alt: "This figure begins with the sentence, “We substitute x equals 3 and y equals 2 into both equations.” The first equation reads 3 times x minus 7equals 7. Then, 3 times 3 minus 2 equals 7. Then 7 = 7 is true. The second equation reads x minus 2y equals 4. The n times 2 minus 2 times 2 = 4. Then negative 1 = 4 is false.", caption: none) The ordered pair (3, 2) made one equation true, but it made the other equation false. Since it is not a solution to #strong[both] equations, it is not a solution to this system. #examplebox("Example 1")[][ Determine whether the ordered pair is a solution to the system: #math.equation(block: false, alt: "{ x minus y equals −1; 2 x minus y equals −5")[$\{ x − y = −1 \ 2 x − y = −5$] ⓐ #math.equation(block: false, alt: "open parenthesis −2 , −1 close parenthesis")[$( −2 , −1 )$] ⓑ #math.equation(block: false, alt: "open parenthesis −4 , −3 close parenthesis")[$( −4 , −3 )$] #solutionbox[ + ⓐ #linebreak() #figure(figph[The equations are x minus y equals minus 1 and 2 x minus y equals minus 5. We substitute x equal to minus 2 and y equal to minus 1 into both equations. So, x minus y equals minus 1 becomes minus 2 minus open parentheses minus 1 close parentheses equal to or not equal to minus 1. Simplifying, we get minus 1 equals minus 1 which is correct. The equation 2 x minus y equals minus 5 becomes 2 times minus 2 minus open parentheses minus 1 close parentheses equal to or not equal to minus 5. Simplifying, we get minus 3 not equal to minus 5. Hence, the ordered pair minus 2, minus 1 does not make both equations true. So, it is not a solution.], alt: "The equations are x minus y equals minus 1 and 2 x minus y equals minus 5. We substitute x equal to minus 2 and y equal to minus 1 into both equations. So, x minus y equals minus 1 becomes minus 2 minus open parentheses minus 1 close parentheses equal to or not equal to minus 1. Simplifying, we get minus 1 equals minus 1 which is correct. The equation 2 x minus y equals minus 5 becomes 2 times minus 2 minus open parentheses minus 1 close parentheses equal to or not equal to minus 5. Simplifying, we get minus 3 not equal to minus 5. Hence, the ordered pair minus 2, minus 1 does not make both equations true. So, it is not a solution.", caption: none) #linebreak() (–2, –1) does not make both equations true. (–2, –1) is not a solution. #linebreak() #linebreak() ⓑ #linebreak() #figure(figph[This figure begins with the sentence, “We substitute x = -4 and y = -3 into both equations.” The first equation listed shows x – y = -1. Then -4 - (-3) = -1. Then -1 = -1. The second equation listed shows 2x – y = -5. Then 2 times (-4) – (-3) = -5. Then -5 = -5. Under the first equation is the sentence, “(-4, -3) does make both equations true.” Under the second equation is the sentence, “(-4, -3) is a solution.”], alt: "This figure begins with the sentence, “We substitute x = -4 and y = -3 into both equations.” The first equation listed shows x – y = -1. Then -4 - (-3) = -1. Then -1 = -1. The second equation listed shows 2x – y = -5. Then 2 times (-4) – (-3) = -5. Then -5 = -5. Under the first equation is the sentence, “(-4, -3) does make both equations true.” Under the second equation is the sentence, “(-4, -3) is a solution.”", caption: none) #linebreak() (–4, –3) does make both equations true. (–4, –3) is a solution. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Determine whether the ordered pair is a solution to the system: #math.equation(block: false, alt: "{ 3 x plus y equals 0; x plus 2 y equals −5 .")[$\{ 3 x + y = 0 \ x + 2 y = −5 .$] ⓐ #math.equation(block: false, alt: "open parenthesis 1 , −3 close parenthesis")[$( 1 , −3 )$] ⓑ #math.equation(block: false, alt: "open parenthesis 0 , 0 close parenthesis")[$( 0 , 0 )$] #solutionbox[ ⓐ yes ⓑ no ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Determine whether the ordered pair is a solution to the system: #math.equation(block: false, alt: "{ x minus 3 y equals −8; −3 x minus y equals 4 .")[$\{ x − 3 y = −8 \ −3 x − y = 4 .$] ⓐ #math.equation(block: false, alt: "open parenthesis 2 , −2 close parenthesis")[$( 2 , −2 )$] ⓑ #math.equation(block: false, alt: "open parenthesis −2 , 2 close parenthesis")[$( −2 , 2 )$] #solutionbox[ ⓐ no ⓑ yes ] ] === Solve a System of Linear Equations by Graphing In this chapter we will use three methods to solve a system of linear equations. The first method we’ll use is graphing. The graph of a linear equation is a line. Each point on the line is a solution to the equation. For a system of two equations, we will graph two lines. Then we can see all the points that are solutions to each equation. And, by finding what the lines have in common, we’ll find the solution to the system. Most linear equations in one variable have one solution, but we saw that some equations, called contradictions, have no solutions and for other equations, called identities, all numbers are solutions. Similarly, when we solve a system of two linear equations represented by a graph of two lines in the same plane, there are three possible cases, as shown in : #figure(figph[This figure shows three x y-coordinate planes. The first plane shows two lines which intersect at one point. Under the graph it says, “The lines intersect. Intersecting lines have one point in common. There is one solution to this system.” The second x y-coordinate plane shows two parallel lines. Under the graph it says, “The lines are parallel. Parallel lines have no points in common. There is no solution to this system.” The third x y-coordinate plane shows one line. Under the graph it says, “Both equations give the same line. Because we have just one line, there are infinitely many solutions.”], alt: "This figure shows three x y-coordinate planes. The first plane shows two lines which intersect at one point. Under the graph it says, “The lines intersect. Intersecting lines have one point in common. There is one solution to this system.” The second x y-coordinate plane shows two parallel lines. Under the graph it says, “The lines are parallel. Parallel lines have no points in common. There is no solution to this system.” The third x y-coordinate plane shows one line. Under the graph it says, “Both equations give the same line. Because we have just one line, there are infinitely many solutions.”", caption: none) For the first example of solving a system of linear equations in this section and in the next two sections, we will solve the same system of two linear equations. But we’ll use a different method in each section. After seeing the third method, you’ll decide which method was the most convenient way to solve this system. #examplebox("Example 2")[How to Solve a System of Linear Equations by Graphing][ Solve the system by graphing: #math.equation(block: false, alt: "{ 2 x plus y equals 7; x minus 2 y equals 6 .")[$\{ 2 x + y = 7 \ x − 2 y = 6 .$] #solutionbox[ #figure(figph[This table has four rows and three columns. The first column acts as the header column. The first row reads, “Step 1. Graph the first equation.” Then it reads, “To graph the first line, write the equation in slope-intercept form.” The equation reads 2x + y = 7 and becomes y = -2x + 7 where m = -2 and b = 7. Then it shows a graph of the equations 2x + y = 7. The equation x – 2y = 6 is also listed.], alt: "This table has four rows and three columns. The first column acts as the header column. The first row reads, “Step 1. Graph the first equation.” Then it reads, “To graph the first line, write the equation in slope-intercept form.” The equation reads 2x + y = 7 and becomes y = -2x + 7 where m = -2 and b = 7. Then it shows a graph of the equations 2x + y = 7. The equation x – 2y = 6 is also listed.", caption: none) #figure(figph[The second row reads, “Step 2. Graph the second equation on the same rectangular coordinate system.” Then it says, “To graph the second line, use intercepts.” This is followed by the equation x – 2y = 6 and the ordered pairs (0, -3) and (6, 0). The last column of this row shows a graph of the two equations.], alt: "The second row reads, “Step 2. Graph the second equation on the same rectangular coordinate system.” Then it says, “To graph the second line, use intercepts.” This is followed by the equation x – 2y = 6 and the ordered pairs (0, -3) and (6, 0). The last column of this row shows a graph of the two equations.", caption: none) #figure(figph[The third row reads, “Step 3. Determine whether the lines intersect, are parallel, or are the same line.” Then “Look at the graph of the lines.” Finally it reads, “The lines intersect.”], alt: "The third row reads, “Step 3. Determine whether the lines intersect, are parallel, or are the same line.” Then “Look at the graph of the lines.” Finally it reads, “The lines intersect.”", caption: none) #figure(figph[The fourth row reads, “Step 4. Identify the solution to the system. If the lines intersect, identify the point of intersection. Check to make sure it is a solution to both equations. This is the solution to the system. If the lines are parallel, the system has no solution. If the lines are the same, the system has an infinite number of solutions.” Then it reads, “Since the lines intersect, find the point of intersection. Check the point in both equations.” Finally it reads, “The lines intersect at (4, -1). It then uses substitution to show that, “The solution is (4, -1).”], alt: "The fourth row reads, “Step 4. Identify the solution to the system. If the lines intersect, identify the point of intersection. Check to make sure it is a solution to both equations. This is the solution to the system. If the lines are parallel, the system has no solution. If the lines are the same, the system has an infinite number of solutions.” Then it reads, “Since the lines intersect, find the point of intersection. Check the point in both equations.” Finally it reads, “The lines intersect at (4, -1). It then uses substitution to show that, “The solution is (4, -1).”", caption: none) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve the system by graphing: #math.equation(block: false, alt: "{ x minus 3 y equals −3; x plus y equals 5 .")[$\{ x − 3 y = −3 \ x + y = 5 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 3 , 2 close parenthesis")[$( 3 , 2 )$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve the system by graphing: #math.equation(block: false, alt: "{ minus x plus y equals 1; 3 x plus 2 y equals 12 .")[$\{ − x + y = 1 \ 3 x + 2 y = 12 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 2 , 3 close parenthesis")[$( 2 , 3 )$] ] ] The steps to use to solve a system of linear equations by graphing are shown below. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[To solve a system of linear equations by graphing.] + Graph the first equation. + Graph the second equation on the same rectangular coordinate system. + Determine whether the lines intersect, are parallel, or are the same line. + Identify the solution to the system. - If the lines intersect, identify the point of intersection. Check to make sure it is a solution to both equations. This is the solution to the system. - If the lines are parallel, the system has no solution. - If the lines are the same, the system has an infinite number of solutions. ] #examplebox("Example 3")[][ Solve the system by graphing: #math.equation(block: false, alt: "{ y equals 2 x plus 1; y equals 4 x minus 1 .")[$\{ y = 2 x + 1 \ y = 4 x − 1 .$] #solutionbox[ Both of the equations in this system are in slope-intercept form, so we will use their slopes and #emph[y]-intercepts to graph them. #math.equation(block: false, alt: "{ y equals 2 x plus 1; y equals 4 x minus 1")[$\{ y = 2 x + 1 \ y = 4 x − 1$] #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([Find the slope and #emph[y]-intercept of the #linebreak() first equation.], [#figure(figph[Slope-intercept form of a linear equation: y = 2x + 1, showing slope m=2 and y-intercept b=1.], alt: "Slope-intercept form of a linear equation: y = 2x + 1, showing slope m=2 and y-intercept b=1.", caption: none)]), [Find the slope and #emph[y]-intercept of the #linebreak() first equation.], [#figure(figph[The slope-intercept form of a linear equation, y = 4x - 1, is presented, along with its identified slope (m=4) and y-intercept (b=-1).], alt: "The slope-intercept form of a linear equation, y = 4x - 1, is presented, along with its identified slope (m=4) and y-intercept (b=-1).", caption: none)], [Graph the two lines.], [], [Determine the point of intersection.], [The lines intersect at (1, 3).], [], [#figure(figph[A graph showing two intersecting lines, one red and one dark blue, on a Cartesian coordinate system. Their intersection point is highlighted with a light blue dot.], alt: "A graph showing two intersecting lines, one red and one dark blue, on a Cartesian coordinate system. Their intersection point is highlighted with a light blue dot.", caption: none)], [Check the solution in both equations.], [#math.equation(block: false, alt: "y, equals, 2 x plus 1; 3, equals ?, 2 times 1 plus 1; 3, equals, 3 ✓, y, equals, 4 x minus 1; 3, equals ?, 4 times 1 minus 1; 3, equals, 3 ✓")[$y & = & 2 x + 1 \ 3 & limits(=)^(?) & 2 · 1 + 1 \ 3 & = & 3 #h(0.2em) ✓ & & & y & = & 4 x − 1 \ 3 & limits(=)^(?) & 4 · 1 − 1 \ 3 & = & 3 #h(0.2em) ✓$]], [], [The solution is (1, 3).], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ y equals 2 x plus 2; y equals − x minus 4 .")[$\{ y = 2 x + 2 \ y = "−" x − 4 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis −2 , −2 close parenthesis")[$( −2 , −2 )$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ y equals 3 x plus 3; y equals − x plus 7 .")[$\{ y = 3 x + 3 \ y = "−" x + 7 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 1 , 6 close parenthesis")[$( 1 , 6 )$] ] ] Both equations in were given in slope–intercept form. This made it easy for us to quickly graph the lines. In the next example, we’ll first re-write the equations into slope–intercept form. #examplebox("Example 4")[][ Solve the system by graphing: #math.equation(block: false, alt: "{ 3 x plus y equals −1; 2 x plus y equals 0 .")[$\{ 3 x + y = −1 \ 2 x + y = 0 .$] #solutionbox[ We’ll solve both of these equations for #math.equation(block: false, alt: "y")[$y$] so that we can easily graph them using their slopes and #emph[y]-intercepts. #math.equation(block: false, alt: "{ 3 x plus y equals −1; 2 x plus y equals 0")[$\{ 3 x + y = −1 \ 2 x + y = 0$] #linebreak() #figure(table( columns: 2, align: left, inset: 6pt, table.header([Solve the first equation for #emph[y]. #linebreak() #linebreak() #linebreak() Find the slope and #emph[y]-intercept. #linebreak() #linebreak() #linebreak() Solve the second equation for #emph[y]. #linebreak() #linebreak() #linebreak() Find the slope and #emph[y]-intercept.], [#math.equation(block: false, alt: "3 x plus y, equals, minus 1; y, equals, minus 3 x minus 1; m, equals, minus 3; b, equals, minus 1; 2 x plus y, equals, 0; y, equals, minus 2 x; m, equals, minus 2; b, equals, 0")[$3 x + y & = & − 1 \ y & = & − 3 x − 1 \ \ m & = & − 3 \ b & = & − 1 \ \ \ 2 x + y & = & 0 \ y & = & − 2 x \ \ m & = & − 2 \ b & = & 0$]]), [Graph the lines.], [#figure(figph[A graph displays two intersecting linear equations, a blue line and a red line, on a coordinate plane. The lines meet at the point (-1, 2), which is marked by a light blue dot.], alt: "A graph displays two intersecting linear equations, a blue line and a red line, on a coordinate plane. The lines meet at the point (-1, 2), which is marked by a light blue dot.", caption: none)], [Determine the point of intersection.], [The lines intersect at (−1, 2).], [Check the solution in both equations.], [#math.equation(block: false, alt: "3 x plus y, equals, minus 1; 3 open parenthesis minus 1 close parenthesis plus 2, equals ?, minus 1; minus 1, equals, minus 1 ✓, 2 x plus y, equals, 0; 2 open parenthesis minus 1 close parenthesis plus 2, equals ?, 0; 0, equals, 0 ✓")[$3 x + y & = & − 1 \ 3 ( − 1 ) + 2 & limits(=)^(?) & − 1 \ − 1 & = & − 1 #h(0.2em) ✓ & & & 2 x + y & = & 0 \ 2 ( − 1 ) + 2 & limits(=)^(?) & 0 \ 0 & = & 0 #h(0.2em) ✓$]], [], [The solution is (−1, 2).], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ minus x plus y equals 1; 2 x plus y equals 10 .")[$\{ − x + y = 1 \ 2 x + y = 10 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 3 , 4 close parenthesis")[$( 3 , 4 )$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ 2 x plus y equals 6; x plus y equals 1 .")[$\{ 2 x + y = 6 \ x + y = 1 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 5 , −4 close parenthesis")[$( 5 , −4 )$] ] ] Usually when equations are given in standard form, the most convenient way to graph them is by using the intercepts. We’ll do this in . #examplebox("Example 5")[][ Solve the system by graphing: #math.equation(block: false, alt: "{ x plus y equals 2; x minus y equals 4 .")[$\{ x + y = 2 \ x − y = 4 .$] #solutionbox[ We will find the #emph[x]- and #emph[y]-intercepts of both equations and use them to graph the lines. #figure(table( columns: 3, align: left, inset: 6pt, table.header([], [#figure(figph[The image displays a simple linear equation in red text on a white background: x+y=2.], alt: "The image displays a simple linear equation in red text on a white background: x+y=2.", caption: none)], []), [To find the intercepts, let #emph[x] = 0 and solve #linebreak() for #emph[y], then let #emph[y] = 0 and solve for #emph[x].], [#math.equation(block: false, alt: "x plus y, equals, 2; 0 plus y, equals, 2; y, equals, 2, x plus y, equals, 2; x plus 0, equals, 2; x, equals, 2")[$x + y & = & 2 \ 0 + y & = & 2 \ y & = & 2 & & & x + y & = & 2 \ x + 0 & = & 2 \ x & = & 2$]], [#figure(figph[A two-column table titled 'x' and 'y'. The first row shows x=0, y=2. The second row shows x=2, y=0.], alt: "A two-column table titled 'x' and 'y'. The first row shows x=0, y=2. The second row shows x=2, y=0.", caption: none)], [], [#figure(figph[A mathematical equation on a white background displays 'x - y = 4' in light blue text.], alt: "A mathematical equation on a white background displays 'x - y = 4' in light blue text.", caption: none)], [], [To find the intercepts, let #linebreak() #emph[x] = 0 then let #emph[y] = 0.], [#math.equation(block: false, alt: "x minus y, equals, 4; 0 minus y, equals, 4; minus y, equals, 4; y, equals, minus 4, x minus y, equals, 4; x minus 0, equals, 4; x, equals, 4")[$x − y & = & 4 \ 0 − y & = & 4 \ − y & = & 4 \ y & = & − 4 & & & x − y & = & 4 \ x − 0 & = & 4 \ x & = & 4$]], [#linebreak() #figure(figph[A two-column table labeled 'x' and 'y'. The first row contains x=0, y=-4. The second row contains x=4, y=0. These represent two coordinate points: (0, -4) and (4, 0).], alt: "A two-column table labeled 'x' and 'y'. The first row contains x=0, y=-4. The second row contains x=4, y=0. These represent two coordinate points: (0, -4) and (4, 0).", caption: none)], [Graph the line.], [#figure(figph[This graph shows two lines intersection at point (3, -1) on an x y-coordinate plane.], alt: "This graph shows two lines intersection at point (3, -1) on an x y-coordinate plane.", caption: none)], [], [Determine the point of intersection.], [The lines intersect at (3, −1).], [], [Check the solution in both equations.], [#math.equation(block: false, alt: "x plus y, equals, 2, x minus y, equals, 4; 3 plus open parenthesis −1 close parenthesis, equals ?, 2, 3 minus open parenthesis −1 close parenthesis, equals ?, 4; 2, equals, 2 ✓, 4, equals, 4 ✓")[$x + y & = & 2 & & & x − y & = & 4 \ 3 + ( −1 ) & limits(=)^(?) & 2 & & & 3 − ( −1 ) & limits(=)^(?) & 4 \ 2 & = & 2 ✓ & & & 4 & = & 4 ✓$] #linebreak() The solution is (3, −1).], [], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ x plus y equals 6; x minus y equals 2 .")[$\{ x + y = 6 \ x − y = 2 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 4 , 2 close parenthesis")[$( 4 , 2 )$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ x plus y equals 2; x minus y equals −8 .")[$\{ x + y = 2 \ x − y = −8 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis −3 , 5 close parenthesis")[$( −3 , 5 )$] ] ] Do you remember how to graph a linear equation with just one variable? It will be either a vertical or a horizontal line. #examplebox("Example 6")[][ Solve the system by graphing: #math.equation(block: false, alt: "{ y equals 6; 2 x plus 3 y equals 12 .")[$\{ y = 6 \ 2 x + 3 y = 12 .$] #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[A system of two linear equations is presented, with the first equation being y = 6 and the second equation being 2x + 3y = 12. A light blue brace groups the two equations together.], alt: "A system of two linear equations is presented, with the first equation being y = 6 and the second equation being 2x + 3y = 12. A light blue brace groups the two equations together.", caption: none)]), [We know the first equation represents a horizontal #linebreak() line whose #emph[y]-intercept is 6.], [#figure(figph[The equation y = 6 is written in red against a plain white background.], alt: "The equation y = 6 is written in red against a plain white background.", caption: none)], [The second equation is most conveniently graphed #linebreak() using intercepts.], [#figure(figph[The equation 2x + 3y = 12 is shown in a light blue font on a white background.], alt: "The equation 2x + 3y = 12 is shown in a light blue font on a white background.", caption: none)], [To find the intercepts, let #emph[x] = 0 and then #emph[y] = 0.], [#figure(figph[A table displays two columns, 'x' and 'y'. The first row shows (x,y) as (0, 4), and the second row shows (x,y) as (6, 0).], alt: "A table displays two columns, 'x' and 'y'. The first row shows (x,y) as (0, 4), and the second row shows (x,y) as (6, 0).", caption: none)], [Graph the lines.], [#figure(figph[A graph displays two intersecting lines on a coordinate plane. A red horizontal line is at y=6. A blue diagonal line passes through (0,4) and (6,0). Their intersection point is marked at (-3,6).], alt: "A graph displays two intersecting lines on a coordinate plane. A red horizontal line is at y=6. A blue diagonal line passes through (0,4) and (6,0). Their intersection point is marked at (-3,6).", caption: none)], [Determine the point of intersection.], [The lines intersect at (−3, 6).], [Check the solution to both equations.], [#math.equation(block: false, alt: "y, equals, 6, 2 x plus 3 y, equals, 12; 6, equals ?, 6 ✓, 2 open parenthesis −3 close parenthesis plus 3 open parenthesis 6 close parenthesis, equals ?, 12; −6 plus 18, equals ?, 12; 12, equals, 12 ✓")[$y & = & 6 & & & 2 x + 3 y & = & 12 \ 6 & limits(=)^(?) & 6 ✓ & & & 2 ( −3 ) + 3 ( 6 ) & limits(=)^(?) & 12 \ & & & & & −6 + 18 & limits(=)^(?) & 12 \ & & & & & 12 & = & 12 ✓$]], [], [The solution is (−3, 6).], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ y equals −1; x plus 3 y equals 6 .")[$\{ y = −1 \ x + 3 y = 6 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 9 , −1 close parenthesis")[$( 9 , −1 )$] ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ x equals 4; 3 x minus 2 y equals 24 .")[$\{ x = 4 \ 3 x − 2 y = 24 .$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 4 , −6 close parenthesis")[$( 4 , −6 )$] ] ] In all the systems of linear equations so far, the lines intersected and the solution was one point. In the next two examples, we’ll look at a system of equations that has no solution and at a system of equations that has an infinite number of solutions. #examplebox("Example 7")[][ Solve the system by graphing: #math.equation(block: false, alt: "{ y equals the fraction 1 over 2 x minus 3; x minus 2 y equals 4 .")[$\{ y = frac(1, 2) x − 3 \ x − 2 y = 4 .$] #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[A system of two linear equations is shown: y = (1/2)x - 3 and x - 2y = 4. These parallel lines have no solution, as they share the same slope but different y-intercepts.], alt: "A system of two linear equations is shown: y = (1/2)x - 3 and x - 2y = 4. These parallel lines have no solution, as they share the same slope but different y-intercepts.", caption: none)]), [To graph the first equation, we will #linebreak() use its slope and #emph[y]-intercept.], [#figure(figph[The image displays the linear equation y = (1/2)x - 3 in red text against a white background.], alt: "The image displays the linear equation y = (1/2)x - 3 in red text against a white background.", caption: none)], [], [#figure(figph[The image displays a mathematical equation, m = 1/2, centered against a plain white background.], alt: "The image displays a mathematical equation, m = 1/2, centered against a plain white background.", caption: none)], [], [#figure(figph[The mathematical equation b = -3 is displayed in the center of a plain white background.], alt: "The mathematical equation b = -3 is displayed in the center of a plain white background.", caption: none)], [To graph the second equation, #linebreak() we will use the intercepts.], [#figure(figph[A simple linear equation is displayed, showing], alt: "A simple linear equation is displayed, showing", caption: none)], [], [#figure(figph[A table displays two columns labeled 'x' and 'y'. The first row shows x=0, y=-2. The second row shows x=4, y=0. The table presents two coordinate pairs.], alt: "A table displays two columns labeled 'x' and 'y'. The first row shows x=0, y=-2. The second row shows x=4, y=0. The table presents two coordinate pairs.", caption: none)], [Graph the lines.], [#figure(figph[A graph displays two parallel lines on a Cartesian coordinate system. The blue line passes through (0, -2) and (-2, -3). The red line passes through (0, -4) and (-2, -5), both lines have a positive slope.], alt: "A graph displays two parallel lines on a Cartesian coordinate system. The blue line passes through (0, -2) and (-2, -3). The red line passes through (0, -4) and (-2, -5), both lines have a positive slope.", caption: none)], [Determine the point of intersection.], [The lines are parallel.], [], [Since no point is on both lines, there is no ordered pair #linebreak() that makes both equations true. There is no solution to #linebreak() this system.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ y equals minus the fraction 1 over 4 x plus 2; x plus 4 y equals minus 8 .")[$\{ y = − frac(1, 4) x + 2 \ x + 4 y = − 8 .$] #solutionbox[ no solution ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ y equals 3 x minus 1; 6 x minus 2 y equals 6 .")[$\{ y = 3 x − 1 \ 6 x − 2 y = 6 .$] #solutionbox[ no solution ] ] #examplebox("Example 8")[][ Solve the system by graphing: #math.equation(block: false, alt: "{ y equals 2 x minus 3; −6 x plus 3 y equals minus 9 .")[$\{ y = 2 x − 3 \ −6 x + 3 y = − 9 .$] #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([], [#figure(figph[A system of two linear equations is shown: y = 2x - 3 and -6x + 3y = -9.], alt: "A system of two linear equations is shown: y = 2x - 3 and -6x + 3y = -9.", caption: none)]), [Find the slope and #emph[y]-intercept of the #linebreak() first equation.], [#figure(figph[The image displays the linear equation y = 2x - 3, explicitly identifying its slope as m = 2 and its y-intercept as b = -3.], alt: "The image displays the linear equation y = 2x - 3, explicitly identifying its slope as m = 2 and its y-intercept as b = -3.", caption: none)], [Find the intercepts of the second equation.], [#figure(figph[A mathematical equation is displayed on a white background, reading '-6x + 3y = -9'.], alt: "A mathematical equation is displayed on a white background, reading '-6x + 3y = -9'.", caption: none)], [], [#figure(figph[Table displaying data points for a linear function, including the y-intercept (0, -3) and x-intercept (3/2, 0).], alt: "Table displaying data points for a linear function, including the y-intercept (0, -3) and x-intercept (3/2, 0).", caption: none)], [Graph the lines.], [#figure(figph[A linear graph on a Cartesian coordinate system with a positive slope, passing through (0, -3) and (2, 1).], alt: "A linear graph on a Cartesian coordinate system with a positive slope, passing through (0, -3) and (2, 1).", caption: none)], [Determine the point of intersection.], [The lines are the same!], [], [Since every point on the line makes both equations #linebreak() true, there are infinitely many ordered pairs that make #linebreak() both equations true.], [], [There are infinitely many solutions to this system.], )) ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ y equals minus 3 x minus 6; 6 x plus 2 y equals minus 12 .")[$\{ y = − 3 x − 6 \ 6 x + 2 y = − 12 .$] #solutionbox[ infinitely many solutions ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Solve each system by graphing: #math.equation(block: false, alt: "{ y equals the fraction 1 over 2 x minus 4; 2 x minus 4 y equals 16 .")[$\{ y = frac(1, 2) x − 4 \ 2 x − 4 y = 16 .$] #solutionbox[ infinitely many solutions ] ] If you write the second equation in in slope-intercept form, you may recognize that the equations have the same slope and same #emph[y]-intercept. When we graphed the second line in the last example, we drew it right over the first line. We say the two lines are coincident. Coincident lines have the same slope and same #emph[y]-intercept. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Coincident Lines] Coincident lines have the same slope and same #emph[y]-intercept. ] === Determine the Number of Solutions of a Linear System There will be times when we will want to know how many solutions there will be to a system of linear equations, but we might not actually have to find the solution. It will be helpful to determine this without graphing. We have seen that two lines in the same plane must either intersect or are parallel. The systems of equations in through all had two intersecting lines. Each system had one solution. A system with parallel lines, like , has no solution. What happened in ? The equations have #strong[coincident lines], and so the system had infinitely many solutions. We’ll organize these results in below: #figure(figph[This table has two columns and four rows. The first row labels each column “Graph” and “Number of solutions.” Under “Graph” are “2 intersecting lines,” “Parallel lines,” and “Same line.” Under “Number of solutions” are “1,” “None,” and “Infinitely many.”], alt: "This table has two columns and four rows. The first row labels each column “Graph” and “Number of solutions.” Under “Graph” are “2 intersecting lines,” “Parallel lines,” and “Same line.” Under “Number of solutions” are “1,” “None,” and “Infinitely many.”", caption: none) Parallel lines have the same slope but different #emph[y]-intercepts. So, if we write both equations in a system of linear equations in slope–intercept form, we can see how many solutions there will be without graphing! Look at the system we solved in . #math.equation(block: true, alt: "{ y, equals, the fraction 1 over 2 x minus 3; x minus 2 y, equals, 4; The first line is in slope–intercept form., If we solve the second equation for y , we get; y equals the fraction 1 over 2 x minus 3, x minus 2 y, equals, 4; −2 y, equals, − x plus 4; y, equals, the fraction 1 over 2 x minus 2; m equals the fraction 1 over 2 , b equals −3, m equals the fraction 1 over 2 , b equals −2")[$& & & #h(0.1em) \{ #h(0.1em) y & = & frac(1, 2) x − 3 \ x − 2 y & = & 4 \ "The first line is in slope–intercept form." & & & "If we solve the second equation for" #h(0.2em) y , #h(0.2em) "we get" \ y = frac(1, 2) x − 3 & & & #h(1em) x − 2 y & = & 4 \ −2 y & = & "−" x + 4 \ y & = & frac(1, 2) x − 2 \ m = frac(1, 2) , b = −3 & & & m = frac(1, 2) , b = −2$]The two lines have the same slope but different #emph[y]-intercepts. They are parallel lines. shows how to determine the number of solutions of a linear system by looking at the slopes and intercepts. #figure(figph[This table is entitled “Number of Solutions of a Linear System of Equations.” There are four columns. The columns are labeled, “Slopes,” “Intercepts,” “Type of Lines,” “Number of Solutions.” Under “Slopes” are “Different,” “Same,” and “Same.” Under “Intercepts,” the first cell is blank, then the words “Different” and “Same” appear. Under “Types of Lines” are the words, “Intersecting,” “Parallel,” and “Coincident.” Under “Number of Solutions” are “1 point,” “No Solution,” and “Infinitely many solutions.”], alt: "This table is entitled “Number of Solutions of a Linear System of Equations.” There are four columns. The columns are labeled, “Slopes,” “Intercepts,” “Type of Lines,” “Number of Solutions.” Under “Slopes” are “Different,” “Same,” and “Same.” Under “Intercepts,” the first cell is blank, then the words “Different” and “Same” appear. Under “Types of Lines” are the words, “Intersecting,” “Parallel,” and “Coincident.” Under “Number of Solutions” are “1 point,” “No Solution,” and “Infinitely many solutions.”", caption: none) Let’s take one more look at our equations in that gave us parallel lines. #math.equation(block: true, alt: "{ y equals the fraction 1 over 2 x minus 3; x minus 2 y equals 4")[$\{ y = frac(1, 2) x − 3 \ x − 2 y = 4$]When both lines were in slope-intercept form we had: #math.equation(block: true, alt: "y equals the fraction 1 over 2 x minus 3 y equals the fraction 1 over 2 x minus 2")[$y = frac(1, 2) x − 3 #h(2em) y = frac(1, 2) x − 2$]Do you recognize that it is impossible to have a single ordered pair #math.equation(block: false, alt: "open parenthesis x , y close parenthesis")[$( x , y )$] that is a solution to both of those equations? We call a system of equations like this #strong[an inconsistent system]. It has no solution. A system of equations that has at least one solution is called a #strong[consistent system]. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Consistent and Inconsistent Systems] A #strong[consistent system] of equations is a system of equations with at least one solution. An #strong[inconsistent system] of equations is a system of equations with no solution. ] We also categorize the equations in a system of equations by calling the equations #emph[independent] or #emph[dependent]. If two equations are #strong[independent equations], they each have their own set of solutions. Intersecting lines and parallel lines are independent. If two equations are dependent, all the solutions of one equation are also solutions of the other equation. When we graph two #strong[dependent equations], we get coincident lines. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Independent and Dependent Equations] Two equations are #strong[independent] if they have different solutions. Two equations are #strong[dependent] if all the solutions of one equation are also solutions of the other equation. ] Let’s sum this up by looking at the graphs of the three types of systems. See and . #figure(figph[This figure shows three x y coordinate planes in a horizontal row. The first shows two lines intersecting. The second shows two parallel lines. The third shows two coincident lines.], alt: "This figure shows three x y coordinate planes in a horizontal row. The first shows two lines intersecting. The second shows two parallel lines. The third shows two coincident lines.", caption: none) #figure(figph[This table has four columns and four rows. The columns are labeled, “Lines,” “Intersecting,” “Parallel,” and “Coincident.” In the first row under the labeled column “lines” it reads “Number of solutions.” Reading across, it tell us that an intersecting line contains 1 point, a parallel line provides no solution, and a coincident line has infinitely many solutions. A consistent/inconsistent line has consistent lines if they are intersecting, inconsistent lines if they are parallel and consistent if the lines are coincident. Finally, dependent and independent lines are considered independent if the lines intersect, they are also independent if the lines are parallel, and they are dependent if the lines are coincident.], alt: "This table has four columns and four rows. The columns are labeled, “Lines,” “Intersecting,” “Parallel,” and “Coincident.” In the first row under the labeled column “lines” it reads “Number of solutions.” Reading across, it tell us that an intersecting line contains 1 point, a parallel line provides no solution, and a coincident line has infinitely many solutions. A consistent/inconsistent line has consistent lines if they are intersecting, inconsistent lines if they are parallel and consistent if the lines are coincident. Finally, dependent and independent lines are considered independent if the lines intersect, they are also independent if the lines are parallel, and they are dependent if the lines are coincident.", caption: none) #examplebox("Example 9")[][ Without graphing, determine the number of solutions and then classify the system of equations: #math.equation(block: false, alt: "{ y equals 3 x minus 1; 6 x minus 2 y equals 12 .")[$\{ y = 3 x − 1 \ 6 x − 2 y = 12 .$] #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([We will compare the slopes and intercepts of the two lines.], [#math.equation(block: false, alt: "{ y equals 3 x minus 1; 6 x minus 2 y equals 12 .")[$\{ y = 3 x − 1 \ 6 x − 2 y = 12 .$]]), [The first equation is already in slope-intercept form.], [#math.equation(block: false, alt: "y equals 3 x minus 1")[$y = 3 x − 1$]], [Write the second equation in slope-intercept form.], [#math.equation(block: false, alt: "6 x minus 2 y, equals, 12; −2 y, equals, −6 x plus 12; the fraction −2 y over −2, equals, the fraction −6 x plus 12 over −2; y, equals, 3 x minus 6")[$6 x − 2 y & = & 12 \ −2 y & = & −6 x + 12 \ frac(−2 y, −2) & = & frac(−6 x + 12, −2) \ y & = & 3 x − 6$]], [Find the slope and intercept of each line.], [#math.equation(block: false, alt: "y, equals, 3 x minus 1, y, equals, 3 x minus 6; m, equals, 3, m, equals, 3; b, equals, −1, b, equals, −6")[$y & = & 3 x − 1 & & & & y & = & 3 x − 6 \ m & = & 3 & & & & m & = & 3 \ b & = & −1 & & & & b & = & −6$]], [], [Since the slopes are the same and #math.equation(block: false, alt: "y")[$y$]-intercepts are different, the lines are parallel.], )) A system of equations whose graphs are parallel lines has no solution and is inconsistent and independent. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Without graphing, determine the number of solutions and then classify the system of equations. #math.equation(block: true, alt: "{ y equals minus 2 x minus 4; 4 x plus 2 y equals 9")[$\{ y = − 2 x − 4 \ 4 x + 2 y = 9$] #solutionbox[ no solution, inconsistent, independent ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Without graphing, determine the number of solutions and then classify the system of equations. #math.equation(block: true, alt: "{ y equals the fraction 1 over 3 x minus 5; x minus 3 y equals 6")[$\{ y = frac(1, 3) x − 5 \ x − 3 y = 6$] #solutionbox[ no solution, inconsistent, independent ] ] #examplebox("Example 10")[][ Without graphing, determine the number of solutions and then classify the system of equations: #math.equation(block: false, alt: "{ 2 x plus y equals minus 3; x minus 5 y equals 5 .")[$\{ 2 x + y = − 3 \ x − 5 y = 5 .$] #solutionbox[ #figure(table( columns: 3, align: left, inset: 6pt, [We will compare the slope and intercepts of the two lines.], [#math.equation(block: false, alt: "{ 2 x plus y equals minus 3; x minus 5 y equals 5")[$\{ 2 x + y = − 3 \ x − 5 y = 5$]], [], [Write both equations in slope-intercept form.], [#math.equation(block: false, alt: "2 x plus y, equals, −3; y, equals, −2 x −3")[$2 x + y & = & −3 \ y & = & −2 x −3$]], [#math.equation(block: false, alt: "x minus 5 y equals 5, equals, 5; −5 y, equals, − x plus 5; the fraction −5 y over −5, equals, the fraction − x plus 5 over −5; y, equals, the fraction 1 over 5 x minus 1")[$x − 5 y = 5 & = & 5 \ −5 y & = & − x + 5 \ frac(−5 y, −5) & = & frac(− x + 5, −5) \ y & = & frac(1, 5) x − 1$]], [Find the slope and intercept of each line.], [#math.equation(block: false, alt: "y, equals, −2 x minus 3; m, equals, −2; b, equals, −3")[$y & = & −2 x − 3 \ m & = & −2 \ b & = & −3$]], [#math.equation(block: false, alt: "y, equals, the fraction 1 over 5 x minus 1; m, equals, the fraction 1 over 5; b, equals, −1")[$y & = & frac(1, 5) x − 1 \ m & = & frac(1, 5) \ b & = & −1$]], [], [Since the slopes are different, the lines intersect.], [], )) A system of equations whose graphs are intersect has 1 solution and is consistent and independent. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Without graphing, determine the number of solutions and then classify the system of equations. #math.equation(block: true, alt: "{ 3 x plus 2 y equals 2; 2 x plus y equals 1")[$\{ 3 x + 2 y = 2 \ 2 x + y = 1$] #solutionbox[ one solution, consistent, independent ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Without graphing, determine the number of solutions and then classify the system of equations. #math.equation(block: true, alt: "{ x plus 4 y equals 12; minus x plus y equals 3")[$\{ x + 4 y = 12 \ − x + y = 3$] #solutionbox[ one solution, consistent, independent ] ] #examplebox("Example 11")[][ Without graphing, determine the number of solutions and then classify the system of equations. #math.equation(block: false, alt: "{ 3 x minus 2 y equals 4; y equals the fraction 3 over 2 x minus 2")[$\{ 3 x − 2 y = 4 \ y = frac(3, 2) x − 2$] #solutionbox[ #figure(table( columns: 2, align: left, inset: 6pt, table.header([We will compare the slopes and intercepts of the two lines.], [#math.equation(block: false, alt: "{ 3 x minus 2 y equals 4; y equals the fraction 3 over 2 x minus 2")[$\{ 3 x − 2 y = 4 \ y = frac(3, 2) x − 2$]]), [Write the first equation in slope-intercept form.], [#math.equation(block: false, alt: "3 x minus 2 y, equals, 4; −2 y, equals, −3 x plus 4; the fraction −2 y over −2, equals, the fraction −3 x plus 4 over −2; y, equals, the fraction 3 over 2 x minus 2")[$3 x − 2 y & = & 4 \ −2 y & = & −3 x + 4 \ frac(−2 y, −2) & = & frac(−3 x + 4, −2) \ y & = & frac(3, 2) x − 2$]], [The second equation is already in slope-intercept form.], [#math.equation(block: false, alt: "y equals the fraction 3 over 2 x minus 2")[$y = frac(3, 2) x − 2$]], [], [Since the slopes are the same, they have the same slope and same #math.equation(block: false, alt: "y")[$y$]-intercept and so the lines are coincident.], )) A system of equations whose graphs are coincident lines has infinitely many solutions and is consistent and dependent. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Without graphing, determine the number of solutions and then classify the system of equations. #math.equation(block: true, alt: "{ 4 x minus 5 y equals 20; y equals the fraction 4 over 5 x minus 4")[$\{ 4 x − 5 y = 20 \ y = frac(4, 5) x − 4$] #solutionbox[ infinitely many solutions, consistent, dependent ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Without graphing, determine the number of solutions and then classify the system of equations. #math.equation(block: true, alt: "{ −2 x minus 4 y equals 8; y equals minus the fraction 1 over 2 x minus 2")[$\{ −2 x − 4 y = 8 \ y = − frac(1, 2) x − 2$] #solutionbox[ infinitely many solutions, consistent, dependent ] ] === Solve Applications of Systems of Equations by Graphing We will use the same problem solving strategy we used in Math Models to set up and solve applications of systems of linear equations. We’ll modify the strategy slightly here to make it appropriate for systems of equations. #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ #emph[Use a problem solving strategy for systems of linear equations.] + #strong[Read] the problem. Make sure all the words and ideas are understood. + #strong[Identify] what we are looking for. + #strong[Name] what we are looking for. Choose variables to represent those quantities. + #strong[Translate] into a system of equations. + #strong[Solve] the system of equations using good algebra techniques. + #strong[Check] the answer in the problem and make sure it makes sense. + #strong[Answer] the question with a complete sentence. ] Step 5 is where we will use the method introduced in this section. We will graph the equations and find the solution. #examplebox("Example 12")[][ Sondra is making 10 quarts of punch from fruit juice and club soda. The number of quarts of fruit juice is 4 times the number of quarts of club soda. How many quarts of fruit juice and how many quarts of club soda does Sondra need? #solutionbox[ #strong[Step 1. Read] the problem. #strong[Step 2. Identify] what we are looking for. We are looking for the number of quarts of fruit juice and the number of quarts of club soda that Sondra will need. #strong[Step 3. Name] what we are looking for. Choose variables to represent those quantities. Let #math.equation(block: false, alt: "f equals")[$f =$] number of quarts of fruit juice. #linebreak()     #math.equation(block: false, alt: "c equals")[$c =$] number of quarts of club soda #strong[Step 4. Translate] into a system of equations. #linebreak() #figure(figph[This figure shows sentences converted into equations. The first sentence reads, “The number of quarts of fruit juice and the number of quarts of club soda is 10. “Number of quarts of fruit juice” contains a curly bracket beneath the phrase with an “f” centered under the bracket. The “And” also contains a curly bracket beneath it and has a plus sign centered beneath it. “Number of quarts of club soda” contains a curly bracket with the variable “c” beneath it. And finally, the phrase “is 10” contains a curly bracket. Under this it reads equals 10. The second sentence reads, “The number of quarts of fruit juice is four times the number of quarts of club soda”. This sentence is set up similarly in that each phrase contains a curly bracket underneath. The variable “f” represents “The number of quarts of fruit juice”. An equal sign represents “is” and “4c” represents four times the number of quarts of club soda.”], alt: "This figure shows sentences converted into equations. The first sentence reads, “The number of quarts of fruit juice and the number of quarts of club soda is 10. “Number of quarts of fruit juice” contains a curly bracket beneath the phrase with an “f” centered under the bracket. The “And” also contains a curly bracket beneath it and has a plus sign centered beneath it. “Number of quarts of club soda” contains a curly bracket with the variable “c” beneath it. And finally, the phrase “is 10” contains a curly bracket. Under this it reads equals 10. The second sentence reads, “The number of quarts of fruit juice is four times the number of quarts of club soda”. This sentence is set up similarly in that each phrase contains a curly bracket underneath. The variable “f” represents “The number of quarts of fruit juice”. An equal sign represents “is” and “4c” represents four times the number of quarts of club soda.”", caption: none) We now have the system. #math.equation(block: false, alt: "{ f plus c equals 10; f equals 4 c")[$\{ f + c = 10 \ f = 4 c$] #strong[Step 5. Solve] the system of equations using good algebra techniques. #linebreak() #figure(figph[This figure shows two equations and their graph. The first equation is f = 4c where b = 4 and b = 0. The second equation is f + c = 10. f = negative c +10 where b = negative 1 and b = 10. The x y coordinate plane shows a graph of these two lines which intersect at (2, 8).], alt: "This figure shows two equations and their graph. The first equation is f = 4c where b = 4 and b = 0. The second equation is f + c = 10. f = negative c +10 where b = negative 1 and b = 10. The x y coordinate plane shows a graph of these two lines which intersect at (2, 8).", caption: none) The point of intersection (2, 8) is the solution. This means Sondra needs 2 quarts of club soda and 8 quarts of fruit juice. #strong[Step 6. Check] the answer in the problem and make sure it makes sense. Does this make sense in the problem? Yes, the number of quarts of fruit juice, 8 is 4 times the number of quarts of club soda, 2. Yes, 10 quarts of punch is 8 quarts of fruit juice plus 2 quarts of club soda. #strong[Step 7. Answer] the question with a complete sentence. Sondra needs 8 quarts of fruit juice and 2 quarts of soda. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Manny is making 12 quarts of orange juice from concentrate and water. The number of quarts of water is 3 times the number of quarts of concentrate. How many quarts of concentrate and how many quarts of water does Manny need? #solutionbox[ Manny needs 3 quarts juice concentrate and 9 quarts water. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Alisha is making an 18 ounce coffee beverage that is made from brewed coffee and milk. The number of ounces of brewed coffee is 5 times greater than the number of ounces of milk. How many ounces of coffee and how many ounces of milk does Alisha need? #solutionbox[ Alisha needs 15 ounces of coffee and 3 ounces of milk. ] ] #notebox("Note", rgb("#8a94a6"), rgb("#556666"), rgb("#f7f8fa"))[ Access these online resources for additional instruction and practice with solving systems of equations by graphing. - #link("https://www.openstax.org/l/25linsysGraph")[Instructional Video Solving Linear Systems by Graphing] - #link("https://www.openstax.org/l/25solvesbyGraph")[Instructional Video Solve by Graphing] ] === Key Concepts - #strong[To solve a system of linear equations by graphing] + Graph the first equation. + Graph the second equation on the same rectangular coordinate system. + Determine whether the lines intersect, are parallel, or are the same line. + Identify the solution to the system. #linebreak() If the lines intersect, identify the point of intersection. Check to make sure it is a solution to both equations. This is the solution to the system. #linebreak() If the lines are parallel, the system has no solution. #linebreak() If the lines are the same, the system has an infinite number of solutions. + Check the solution in both equations. #linebreak() #linebreak() - Determine the number of solutions from the graph of a linear system #linebreak() #figure(figph[This table has two columns and four rows. The first row labels each column “Graph” and “Number of solutions.” Under “Graph” are “2 intersecting lines,” “Parallel lines,” and “Same line.” Under “Number of solutions” are “1,” “None,” and “Infinitely many.”], alt: "This table has two columns and four rows. The first row labels each column “Graph” and “Number of solutions.” Under “Graph” are “2 intersecting lines,” “Parallel lines,” and “Same line.” Under “Number of solutions” are “1,” “None,” and “Infinitely many.”", caption: none) - Determine the number of solutions of a linear system by looking at the slopes and intercepts #linebreak() #figure(figph[This table is entitled “Number of Solutions of a Linear System of Equations.” There are four columns. The columns are labeled, “Slopes,” “Intercepts,” “Type of Lines,” “Number of Solutions.” Under “Slopes” are “Different,” “Same,” and “Same.” Under “Intercepts,” the first cell is blank, then the words “Different” and “Same” appear. Under “Types of Lines” are the words, “Intersecting,” “Parallel,” and “Coincident.” Under “Number of Solutions” are “1 point,” “No Solution,” and “Infinitely many solutions.”], alt: "This table is entitled “Number of Solutions of a Linear System of Equations.” There are four columns. The columns are labeled, “Slopes,” “Intercepts,” “Type of Lines,” “Number of Solutions.” Under “Slopes” are “Different,” “Same,” and “Same.” Under “Intercepts,” the first cell is blank, then the words “Different” and “Same” appear. Under “Types of Lines” are the words, “Intersecting,” “Parallel,” and “Coincident.” Under “Number of Solutions” are “1 point,” “No Solution,” and “Infinitely many solutions.”", caption: none) - Determine the number of solutions and how to classify a system of equations #linebreak() #figure(figph[This table has four columns and four rows. The columns are labeled, “Lines,” “Intersecting,” “Parallel,” and “Coincident.” In the first row under the labeled column “lines” it reads “Number of solutions.” Reading across, it tell us that an intersecting line contains 1 point, a parallel line provides no solution, and a coincident line has infinitely many solutions. A consistent/inconsistent line has consistent lines if they are intersecting, inconsistent lines if they are parallel and consistent if the lines are coincident. Finally, dependent and independent lines are considered independent if the lines intersect, they are also independent if the lines are parallel, and they are dependent if the lines are coincident.], alt: "This table has four columns and four rows. The columns are labeled, “Lines,” “Intersecting,” “Parallel,” and “Coincident.” In the first row under the labeled column “lines” it reads “Number of solutions.” Reading across, it tell us that an intersecting line contains 1 point, a parallel line provides no solution, and a coincident line has infinitely many solutions. A consistent/inconsistent line has consistent lines if they are intersecting, inconsistent lines if they are parallel and consistent if the lines are coincident. Finally, dependent and independent lines are considered independent if the lines intersect, they are also independent if the lines are parallel, and they are dependent if the lines are coincident.", caption: none) #linebreak() #linebreak() - #strong[Problem Solving Strategy for Systems of Linear Equations] + #strong[Read] the problem. Make sure all the words and ideas are understood. + #strong[Identify] what we are looking for. + #strong[Name] what we are looking for. Choose variables to represent those quantities. + #strong[Translate] into a system of equations. + #strong[Solve] the system of equations using good algebra techniques. + #strong[Check] the answer in the problem and make sure it makes sense. + #strong[Answer] the question with a complete sentence. ==== Practice Makes Perfect #strong[Determine Whether an Ordered Pair is a Solution of a System of Equations]. In the following exercises, determine if the following points are solutions to the given system of equations. #math.equation(block: true, alt: "{ 2 x minus 6 y equals 0; 3 x minus 4 y equals 5")[$\{ 2 x − 6 y = 0 \ 3 x − 4 y = 5$] ⓐ #math.equation(block: false, alt: "open parenthesis 3 , 1 close parenthesis")[$( 3 , 1 )$] ⓑ #math.equation(block: false, alt: "open parenthesis −3 , 4 close parenthesis")[$( −3 , 4 )$] #solutionbox[ ⓐ yes ⓑ no ] #math.equation(block: true, alt: "{ 7 x minus 4 y equals −1; −3 x minus 2 y equals 1")[$\{ 7 x − 4 y = −1 \ −3 x − 2 y = 1$] ⓐ #math.equation(block: false, alt: "open parenthesis 1 , 2 close parenthesis")[$( 1 , 2 )$] ⓑ #math.equation(block: false, alt: "open parenthesis 1 , −2 close parenthesis")[$( 1 , −2 )$] #math.equation(block: true, alt: "{ 2 x plus y equals 5; x plus y equals 1")[$\{ 2 x + y = 5 \ x + y = 1$] ⓐ #math.equation(block: false, alt: "open parenthesis 4 , −3 close parenthesis")[$( 4 , "−3" )$] ⓑ #math.equation(block: false, alt: "open parenthesis 2 , 0 close parenthesis")[$( 2 , 0 )$] #solutionbox[ ⓐ yes ⓑ no ] #math.equation(block: true, alt: "{ −3 x plus y equals 8; minus x plus 2 y equals −9")[$\{ −3 x + y = 8 \ − x + 2 y = −9$] ⓐ #math.equation(block: false, alt: "open parenthesis −5 , −7 close parenthesis")[$( −5 , −7 )$] ⓑ #math.equation(block: false, alt: "open parenthesis −5 , 7 close parenthesis")[$( −5 , 7 )$] #math.equation(block: true, alt: "{ x plus y equals 2; y equals the fraction 3 over 4 x")[$\{ x + y = 2 \ y = frac(3, 4) x$] ⓐ #math.equation(block: false, alt: "open parenthesis the fraction 8 over 7 , the fraction 6 over 7 close parenthesis")[$( frac(8, 7) , frac(6, 7) )$] ⓑ #math.equation(block: false, alt: "open parenthesis 1 , the fraction 3 over 4 close parenthesis")[$( 1 , frac(3, 4) )$] #solutionbox[ ⓐ yes ⓑ no ] #math.equation(block: true, alt: "{ x plus y equals 1; y equals the fraction 2 over 5 x")[$\{ x + y = 1 \ y = frac(2, 5) x$] ⓐ #math.equation(block: false, alt: "open parenthesis the fraction 5 over 7 , the fraction 2 over 7 close parenthesis")[$( frac(5, 7) , frac(2, 7) )$] ⓑ #math.equation(block: false, alt: "open parenthesis 5 , 2 close parenthesis")[$( 5 , 2 )$] #math.equation(block: true, alt: "{ x plus 5 y equals 10; y equals the fraction 3 over 5 x plus 1")[$\{ x + 5 y = 10 \ y = frac(3, 5) x + 1$] ⓐ #math.equation(block: false, alt: "open parenthesis −10 , 4 close parenthesis")[$( −10 , 4 )$] ⓑ #math.equation(block: false, alt: "open parenthesis the fraction 5 over 4 , the fraction 7 over 4 close parenthesis")[$( frac(5, 4) , frac(7, 4) )$] #solutionbox[ ⓐ no ⓑ yes ] #math.equation(block: true, alt: "{ x plus 3 y equals 9; y equals the fraction 2 over 3 x minus 2")[$\{ x + 3 y = 9 \ y = frac(2, 3) x − 2$] ⓐ #math.equation(block: false, alt: "open parenthesis −6 , 5 close parenthesis")[$( −6 , 5 )$] ⓑ #math.equation(block: false, alt: "open parenthesis 5 , the fraction 4 over 3 close parenthesis")[$( 5 , frac(4, 3) )$] #strong[Solve a System of Linear Equations by Graphing] In the following exercises, solve the following systems of equations by graphing. #math.equation(block: true, alt: "{ 3 x plus y equals −3; 2 x plus 3 y equals 5")[$\{ 3 x + y = −3 \ 2 x + 3 y = 5$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis −2 , 3 close parenthesis")[$( −2 , 3 )$] ] #math.equation(block: true, alt: "{ − x plus y equals 2; 2 x plus y equals −4")[$\{ "−" x + y = 2 \ 2 x + y = −4$] #math.equation(block: true, alt: "{ −3 x plus y equals −1; 2 x plus y equals 4")[$\{ −3 x + y = −1 \ 2 x + y = 4$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 1 , 2 close parenthesis")[$( 1 , 2 )$] ] #math.equation(block: true, alt: "{ −2 x plus 3 y equals −3; x plus y equals 4")[$\{ −2 x + 3 y = −3 \ x + y = 4$] #math.equation(block: true, alt: "{ y equals x plus 2; y equals −2 x plus 2")[$\{ y = x + 2 \ y = −2 x + 2$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 0 , 2 close parenthesis")[$( 0 , 2 )$] ] #math.equation(block: true, alt: "{ y equals x minus 2; y equals −3 x plus 2")[$\{ y = x − 2 \ y = −3 x + 2$] #math.equation(block: true, alt: "{ y equals the fraction 3 over 2 x plus 1; y equals minus the fraction 1 over 2 x plus 5")[$\{ y = frac(3, 2) x + 1 \ y = − frac(1, 2) x + 5$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 2 , 4 close parenthesis")[$( 2 , 4 )$] ] #math.equation(block: true, alt: "{ y equals the fraction 2 over 3 x minus 2; y equals minus the fraction 1 over 3 x minus 5")[$\{ y = frac(2, 3) x − 2 \ y = − frac(1, 3) x − 5$] #math.equation(block: true, alt: "{ minus x plus y equals −3; 4 x plus 4 y equals 4")[$\{ − x + y = −3 \ 4 x + 4 y = 4$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 2 , −1 close parenthesis")[$( 2 , −1 )$] ] #math.equation(block: true, alt: "{ x minus y equals 3; 2 x minus y equals 4")[$\{ x − y = 3 \ 2 x − y = 4$] #math.equation(block: true, alt: "{ −3 x plus y equals −1; 2 x plus y equals 4")[$\{ −3 x + y = −1 \ 2 x + y = 4$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 1 , 2 close parenthesis")[$( 1 , 2 )$] ] #math.equation(block: true, alt: "{ −3 x plus y equals −2; 4 x minus 2 y equals 6")[$\{ −3 x + y = −2 \ 4 x − 2 y = 6$] #math.equation(block: true, alt: "{ x plus y equals 5; 2 x minus y equals 4")[$\{ x + y = 5 \ 2 x − y = 4$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 3 , 2 close parenthesis")[$( 3 , 2 )$] ] #math.equation(block: true, alt: "{ x minus y equals 2; 2 x minus y equals 6")[$\{ x − y = 2 \ 2 x − y = 6$] #math.equation(block: true, alt: "{ x plus y equals 2; x minus y equals 0")[$\{ x + y = 2 \ x − y = 0$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 1 , 1 close parenthesis")[$( 1 , 1 )$] ] #math.equation(block: true, alt: "{ x plus y equals 6; x minus y equals −8")[$\{ x + y = 6 \ x − y = −8$] #math.equation(block: true, alt: "{ x plus y equals −5; x minus y equals 3")[$\{ x + y = −5 \ x − y = 3$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis −1 , −4 close parenthesis")[$( −1 , −4 )$] ] #math.equation(block: true, alt: "{ x plus y equals 4; x minus y equals 0")[$\{ x + y = 4 \ x − y = 0$] #math.equation(block: true, alt: "{ x plus y equals −4; minus x plus 2 y equals −2")[$\{ x + y = −4 \ − x + 2 y = −2$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis minus 2 , minus 2 close parenthesis")[$( − 2 , − 2 )$] ] #math.equation(block: true, alt: "{ minus x plus 3 y equals 3; x plus 3 y equals 3")[$\{ − x + 3 y = 3 \ x + 3 y = 3$] #math.equation(block: true, alt: "{ −2 x plus 3 y equals 3; x plus 3 y equals 12")[$\{ −2 x + 3 y = 3 \ x + 3 y = 12$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 3 , 3 close parenthesis")[$( 3 , 3 )$] ] #math.equation(block: true, alt: "{ 2 x minus y equals 4; 2 x plus 3 y equals 12")[$\{ 2 x − y = 4 \ 2 x + 3 y = 12$] #math.equation(block: true, alt: "{ 2 x plus 3 y equals 6; y equals −2")[$\{ 2 x + 3 y = 6 \ y = −2$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 6 , −2 close parenthesis")[$( 6 , −2 )$] ] #math.equation(block: true, alt: "{ −2 x plus y equals 2; y equals 4")[$\{ −2 x + y = 2 \ y = 4$] #math.equation(block: true, alt: "{ x minus 3 y equals −3; y equals 2")[$\{ x − 3 y = −3 \ y = 2$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 3 , 2 close parenthesis")[$( 3 , 2 )$] ] #math.equation(block: true, alt: "{ 2 x minus 2 y equals 8; y equals −3")[$\{ 2 x − 2 y = 8 \ y = −3$] #math.equation(block: true, alt: "{ 2 x minus y equals −1; x equals 1")[$\{ 2 x − y = −1 \ x = 1$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 1 , 3 close parenthesis")[$( 1 , 3 )$] ] #math.equation(block: true, alt: "{ x plus 2 y equals 2; x equals −2")[$\{ x + 2 y = 2 \ x = −2$] #math.equation(block: true, alt: "{ x minus 3 y equals −6; x equals −3")[$\{ x − 3 y = −6 \ x = −3$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis −3 , 1 close parenthesis")[$( −3 , 1 )$] ] #math.equation(block: true, alt: "{ x plus y equals 4; x equals 1")[$\{ x + y = 4 \ x = 1$] #math.equation(block: true, alt: "{ 4 x minus 3 y equals 8; 8 x minus 6 y equals 14")[$\{ 4 x − 3 y = 8 \ 8 x − 6 y = 14$] #solutionbox[ no solution ] #math.equation(block: true, alt: "{ x plus 3 y equals 4; −2 x minus 6 y equals 3")[$\{ x + 3 y = 4 \ −2 x − 6 y = 3$] #math.equation(block: true, alt: "{ −2 x plus 4 y equals 4; y equals the fraction 1 over 2 x")[$\{ −2 x + 4 y = 4 \ y = frac(1, 2) x$] #solutionbox[ no solution ] #math.equation(block: true, alt: "{ 3 x plus 5 y equals 10; y equals minus the fraction 3 over 5 x plus 1")[$\{ 3 x + 5 y = 10 \ y = − frac(3, 5) x + 1$] #math.equation(block: true, alt: "{ x equals −3 y plus 4; 2 x plus 6 y equals 8")[$\{ x = −3 y + 4 \ 2 x + 6 y = 8$] #solutionbox[ infinitely many solutions ] #math.equation(block: true, alt: "{ 4 x equals 3 y plus 7; 8 x minus 6 y equals 14")[$\{ 4 x = 3 y + 7 \ 8 x − 6 y = 14$] #math.equation(block: true, alt: "{ 2 x plus y equals 6; −8 x minus 4 y equals −24")[$\{ 2 x + y = 6 \ −8 x − 4 y = −24$] #solutionbox[ infinitely many solutions ] #math.equation(block: true, alt: "{ 5 x plus 2 y equals 7; −10 x minus 4 y equals −14")[$\{ 5 x + 2 y = 7 \ −10 x − 4 y = −14$] #math.equation(block: true, alt: "{ x plus 3 y equals −6; 4 y equals minus the fraction 4 over 3 x minus 8")[$\{ x + 3 y = −6 \ 4 y = − frac(4, 3) x − 8$] #solutionbox[ infinitely many solutions ] #math.equation(block: true, alt: "{ − x plus 2 y equals −6; y equals minus the fraction 1 over 2 x minus 1")[$\{ "−" x + 2 y = −6 \ y = − frac(1, 2) x − 1$] #math.equation(block: true, alt: "{ −3 x plus 2 y equals −2; y equals − x plus 4")[$\{ −3 x + 2 y = −2 \ y = "−" x + 4$] #solutionbox[ #math.equation(block: true, alt: "open parenthesis 2 , 2 close parenthesis")[$( 2 , 2 )$] ] #math.equation(block: true, alt: "{ minus x plus 2 y equals −2; y equals − x minus 1")[$\{ − x + 2 y = −2 \ y = "−" x − 1$] #strong[Determine the Number of Solutions of a Linear System] Without graphing the following systems of equations, determine the number of solutions and then classify the system of equations. #math.equation(block: true, alt: "{ y equals the fraction 2 over 3 x plus 1; −2 x plus 3 y equals 5")[$\{ y = frac(2, 3) x + 1 \ −2 x + 3 y = 5$] #solutionbox[ 0 solutions ] #math.equation(block: true, alt: "{ y equals the fraction 1 over 3 x plus 2; x minus 3 y equals 9")[$\{ y = frac(1, 3) x + 2 \ x − 3 y = 9$] #math.equation(block: true, alt: "{ y equals −2 x plus 1; 4 x plus 2 y equals 8")[$\{ y = −2 x + 1 \ 4 x + 2 y = 8$] #solutionbox[ 0 solutions ] #math.equation(block: true, alt: "{ y equals 3 x plus 4; 9 x minus 3 y equals 18")[$\{ y = 3 x + 4 \ 9 x − 3 y = 18$] #math.equation(block: true, alt: "{ y equals the fraction 2 over 3 x plus 1; 2 x minus 3 y equals 7")[$\{ y = frac(2, 3) x + 1 \ 2 x − 3 y = 7$] #solutionbox[ no solutions, inconsistent, independent ] #math.equation(block: true, alt: "{ 3 x plus 4 y equals 12; y equals −3 x minus 1")[$\{ 3 x + 4 y = 12 \ y = −3 x − 1$] #math.equation(block: true, alt: "{ 4 x plus 2 y equals 10; 4 x minus 2 y equals −6")[$\{ 4 x + 2 y = 10 \ 4 x − 2 y = −6$] #solutionbox[ consistent, 1 solution ] #math.equation(block: true, alt: "{ 5 x plus 3 y equals 4; 2 x minus 3 y equals 5")[$\{ 5 x + 3 y = 4 \ 2 x − 3 y = 5$] #math.equation(block: true, alt: "{ y equals minus the fraction 1 over 2 x plus 5; x plus 2 y equals 10")[$\{ y = − frac(1, 2) x + 5 \ x + 2 y = 10$] #solutionbox[ infinitely many solutions ] #math.equation(block: true, alt: "{ y equals x plus 1; − x plus y equals 1")[$\{ y = x + 1 \ "−" x + y = 1$] #math.equation(block: true, alt: "{ y equals 2 x plus 3; 2 x minus y equals −3")[$\{ y = 2 x + 3 \ 2 x − y = −3$] #solutionbox[ infinitely many solutions ] #math.equation(block: true, alt: "{ 5 x minus 2 y equals 10; y equals the fraction 5 over 2 x minus 5")[$\{ 5 x − 2 y = 10 \ y = frac(5, 2) x − 5$] #strong[Solve Applications of Systems of Equations by Graphing] In the following exercises, solve. Molly is making strawberry infused water. For each ounce of strawberry juice, she uses three times as many ounces of water. How many ounces of strawberry juice and how many ounces of water does she need to make 64 ounces of strawberry infused water? #solutionbox[ Molly needs 16 ounces of strawberry juice and 48 ounces of water. ] Jamal is making a snack mix that contains only pretzels and nuts. For every ounce of nuts, he will use 2 ounces of pretzels. How many ounces of pretzels and how many ounces of nuts does he need to make 45 ounces of snack mix? Enrique is making a party mix that contains raisins and nuts. For each ounce of nuts, he uses twice the amount of raisins. How many ounces of nuts and how many ounces of raisins does he need to make 24 ounces of party mix? #solutionbox[ Enrique needs 8 ounces of nuts and 16 ounces of water. ] Owen is making lemonade from concentrate. The number of quarts of water he needs is 4 times the number of quarts of concentrate. How many quarts of water and how many quarts of concentrate does Owen need to make 100 quarts of lemonade? ==== Everyday Math Leo is planning his spring flower garden. He wants to plant tulip and daffodil bulbs. He will plant 6 times as many daffodil bulbs as tulip bulbs. If he wants to plant 350 bulbs, how many tulip bulbs and how many daffodil bulbs should he plant? #solutionbox[ Leo should plant 50 tulips and 300 daffodils. ] A marketing company surveys 1,200 people. They surveyed twice as many females as males. How many males and females did they survey? ==== Writing Exercises In a system of linear equations, the two equations have the same slope. Describe the possible solutions to the system. #solutionbox[ Given that it is only known that the slopes of both linear equations are the same, there are either no solutions (the graphs of the equations are parallel) or infinitely many. ] In a system of linear equations, the two equations have the same intercepts. Describe the possible solutions to the system. ==== Self Check After completing the exercises, use this checklist to evaluate your mastery of the objectives of this section. #figure(figph[This figure shows a table with four rows and four columns. The columns are labeled, “I can…,” “Confidently.” “With some help.” and “No - I don’t get it.” The only column with filled in cells below it is labeled “I can…” It reads, “determine whether an ordered pair is a solution of a system of equations.” “solve a system of linear equations by graphing.” “determine the number of solutions of a linear system.” and “solve applications of systems of equations by graphing.”], alt: "This figure shows a table with four rows and four columns. The columns are labeled, “I can…,” “Confidently.” “With some help.” and “No - I don’t get it.” The only column with filled in cells below it is labeled “I can…” It reads, “determine whether an ordered pair is a solution of a system of equations.” “solve a system of linear equations by graphing.” “determine the number of solutions of a linear system.” and “solve applications of systems of equations by graphing.”", caption: none) If most of your checks were: #strong[…confidently.] Congratulations! You have achieved the objectives in this section. Reflect on the study skills you used so that you can continue to use them. What did you do to become confident of your ability to do these things? Be specific. #strong[…with some help.] This must be addressed quickly because topics you do not master become potholes in your road to success. In math every topic builds upon previous work. It is important to make sure you have a strong foundation before you move on. Whom can you ask for help? Your fellow classmates and instructor are good resources. Is there a place on campus where math tutors are available? Can your study skills be improved? #strong[…no - I don’t get it!] This is a warning sign and you must not ignore it. You should get help right away or you will quickly be overwhelmed. See your instructor as soon as you can to discuss your situation. Together you can come up with a plan to get you the help you need.