<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"><html xmlns="http://www.w3.org/1999/xhtml">    <head>        <title>Graphing Linear Equations in            <var>x</var> and            <var>y</var>        </title>        <link rel="StyleSheet" type="text/css" href="../../style_sheets/notes.css"/>    </head>    <body>        <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="0" height="0">            <svg:defs>                <svg:line id="grid_line" x1="-500" y1="0" x2="500" y2="0" stroke="blue" stroke-width="1" stroke-dasharray="1,1"/>                <svg:line id="axis_line" x1="-500" y1="0" x2="500" y2="0" stroke="black" stroke-width="3"/>                <svg:g id="coordinate_grid_horizontal_lines">                    <svg:use xlink:href="#axis_line"/>                    <svg:g id="lower_horizontal_lines">                        <svg:use xlink:href="#grid_line" transform="translate(0,50)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,100)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,150)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,200)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,250)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,300)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,350)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,400)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,450)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,500)"/>                    </svg:g>                    <svg:g id="upper_horizontal_lines">                        <svg:use xlink:href="#grid_line" transform="translate(0,-50)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-100)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-150)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-200)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-250)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-300)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-350)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-400)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-450)"/>                        <svg:use xlink:href="#grid_line" transform="translate(0,-500)"/>                    </svg:g>                </svg:g>                <svg:g id="tall_coordinate_grid_horizontal_lines">                    <svg:use xlink:href="#axis_line"/>                    <svg:use xlink:href="#lower_horizontal_lines"/>                    <svg:use xlink:href="#lower_horizontal_lines" transform="translate(0,500)"/>                    <svg:use xlink:href="#upper_horizontal_lines"/>                    <svg:use xlink:href="#upper_horizontal_lines" transform="translate(0,-500)"/>                </svg:g>                <svg:g id="coordinate_grid_vertical_lines">                    <svg:use xlink:href="#coordinate_grid_horizontal_lines" transform="rotate(90)"/>                </svg:g>                <svg:g id="tall_coordinate_grid_vertical_lines">                    <svg:use xlink:href="#coordinate_grid_vertical_lines" transform="translate(0,500)"/>                    <svg:use xlink:href="#coordinate_grid_vertical_lines" transform="translate(0,-500)"/>                </svg:g>                <svg:g id="coordinate_lines">                    <svg:use xlink:href="#coordinate_grid_horizontal_lines"/>                    <svg:use xlink:href="#coordinate_grid_vertical_lines"/>                </svg:g>                <svg:g id="tall_coordinate_lines">                    <svg:use xlink:href="#tall_coordinate_grid_horizontal_lines"/>                    <svg:use xlink:href="#tall_coordinate_grid_vertical_lines"/>                </svg:g>                <svg:g id="horizontal_labels" text-anchor="middle" font-size="20" fill="black">                    <svg:text x="-500">&minus;10</svg:text>                    <svg:text x="-450">&minus;9</svg:text>                    <svg:text x="-400">&minus;8</svg:text>                    <svg:text x="-350">&minus;7</svg:text>                    <svg:text x="-300">&minus;6</svg:text>                    <svg:text x="-250">&minus;5</svg:text>                    <svg:text x="-200">&minus;4</svg:text>                    <svg:text x="-150">&minus;3</svg:text>                    <svg:text x="-100">&minus;2</svg:text>                    <svg:text x="-50">&minus;1</svg:text>                    <svg:text x="50">1</svg:text>                    <svg:text x="100">2</svg:text>                    <svg:text x="150">3</svg:text>                    <svg:text x="200">4</svg:text>                    <svg:text x="250">5</svg:text>                    <svg:text x="300">6</svg:text>                    <svg:text x="350">7</svg:text>                    <svg:text x="400">8</svg:text>                    <svg:text x="450">9</svg:text>                    <svg:text x="500">10</svg:text>                </svg:g>                <svg:g id="x_axis_label" text-anchor="middle" font-size="20" font-style="italic" fill="black">                    <svg:text x="520">x</svg:text>                </svg:g>                <svg:g id="vertical_labels" text-anchor="end" font-size="20" fill="black">                    <svg:text y="-500">10</svg:text>                    <svg:text y="-450">9</svg:text>                    <svg:text y="-400">8</svg:text>                    <svg:text y="-350">7</svg:text>                    <svg:text y="-300">6</svg:text>                    <svg:text y="-250">5</svg:text>                    <svg:text y="-200">4</svg:text>                    <svg:text y="-150">3</svg:text>                    <svg:text y="-100">2</svg:text>                    <svg:text y="-50">1</svg:text>                    <svg:text y="50">&minus;1</svg:text>                    <svg:text y="100">&minus;2</svg:text>                    <svg:text y="150">&minus;3</svg:text>                    <svg:text y="200">&minus;4</svg:text>                    <svg:text y="250">&minus;5</svg:text>                    <svg:text y="300">&minus;6</svg:text>                    <svg:text y="350">&minus;7</svg:text>                    <svg:text y="400">&minus;8</svg:text>                    <svg:text y="450">&minus;9</svg:text>                    <svg:text y="500">&minus;10</svg:text>                </svg:g>                <svg:g id="y_axis_label" text-anchor="middle" font-size="20" font-style="italic" fill="black">                    <svg:text y="-520">y</svg:text>                </svg:g>                <svg:g id="tall_vertical_labels" text-anchor="end" font-size="20" fill="black">                    <svg:use xlink:href="#vertical_labels"/>                    <svg:text y="-1000">20</svg:text>                    <svg:text y="-950">19</svg:text>                    <svg:text y="-900">18</svg:text>                    <svg:text y="-850">17</svg:text>                    <svg:text y="-800">16</svg:text>                    <svg:text y="-750">15</svg:text>                    <svg:text y="-700">14</svg:text>                    <svg:text y="-650">13</svg:text>                    <svg:text y="-600">12</svg:text>                    <svg:text y="-550">11</svg:text>                    <svg:text y="550">&minus;11</svg:text>                    <svg:text y="600">&minus;12</svg:text>                    <svg:text y="650">&minus;13</svg:text>                    <svg:text y="700">&minus;14</svg:text>                    <svg:text y="750">&minus;15</svg:text>                    <svg:text y="800">&minus;16</svg:text>                    <svg:text y="850">&minus;17</svg:text>                    <svg:text y="900">&minus;18</svg:text>                    <svg:text y="950">&minus;19</svg:text>                    <svg:text y="1000">&minus;20</svg:text>                </svg:g>                <svg:g id="labels">                    <svg:use xlink:href="#horizontal_labels" transform="translate(0,20)"/>                    <svg:use xlink:href="#vertical_labels" transform="translate(-3,9)"/>                </svg:g>                <svg:g id="tall_labels">                    <svg:use xlink:href="#horizontal_labels" transform="translate(0,20)"/>                    <svg:use xlink:href="#tall_vertical_labels" transform="translate(-3,9)"/>                </svg:g>                <svg:g id="coordinate_system">                    <svg:use xlink:href="#coordinate_lines"/>                    <svg:use xlink:href="#labels"/>                    <svg:use xlink:href="#x_axis_label"/>                    <svg:use xlink:href="#y_axis_label"/>                </svg:g>                <svg:g id="tall_coordinate_system">                    <svg:use xlink:href="#tall_coordinate_lines"/>                    <svg:use xlink:href="#tall_labels"/>                </svg:g>                <svg:marker id="black_right_arrowhead" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M0,0 L10,5 L0,10 z" fill="black"/>                </svg:marker>                <svg:marker id="red_right_arrowhead" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M0,0 L10,5 L0,10 z" fill="red"/>                </svg:marker>                <svg:marker id="green_right_arrowhead" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M0,0 L10,5 L0,10 z" fill="green"/>                </svg:marker>                <svg:marker id="navy_right_arrowhead" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M0,0 L10,5 L0,10 z" fill="navy"/>                </svg:marker>                <svg:marker id="blue_right_arrowhead" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M0,0 L10,5 L0,10 z" fill="blue"/>                </svg:marker>                <svg:marker id="goldenrod_right_arrowhead" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M0,0 L10,5 L0,10 z" fill="goldenrod"/>                </svg:marker>                <svg:marker id="black_left_arrowhead" viewBox="0 0 10 10" refX="10" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M10,0 L10,10 L0,5 z" fill="black"/>                </svg:marker>                <svg:marker id="green_right_arrowhead" viewBox="0 0 10 10" refX="0" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M0,0 L10,5 L0,10 z" fill="green"/>                </svg:marker>                <svg:marker id="green_left_arrowhead" viewBox="0 0 10 10" refX="10" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M10,0 L10,10 L0,5 z" fill="green"/>                </svg:marker>                <svg:marker id="red_left_arrowhead" viewBox="0 0 10 10" refX="10" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M10,0 L10,10 L0,5 z" fill="red"/>                </svg:marker>                <svg:marker id="green_left_arrowhead" viewBox="0 0 10 10" refX="10" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M10,0 L10,10 L0,5 z" fill="green"/>                </svg:marker>                <svg:marker id="goldenrod_left_arrowhead" viewBox="0 0 10 10" refX="10" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M10,0 L10,10 L0,5 z" fill="goldenrod"/>                </svg:marker>                <svg:marker id="blue_left_arrowhead" viewBox="0 0 10 10" refX="10" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M10,0 L10,10 L0,5 z" fill="blue"/>                </svg:marker>                <svg:marker id="navy_left_arrowhead" viewBox="0 0 10 10" refX="10" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="3" orient="auto">                    <svg:path d="M10,0 L10,10 L0,5 z" fill="navy"/>                </svg:marker>                <svg:marker id="black_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="5" fill="black"/>                </svg:marker>                <svg:marker id="navy_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="5" fill="navy"/>                </svg:marker>                <svg:marker id="red_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="5" fill="red"/>                </svg:marker>                <svg:marker id="goldenrod_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="5" fill="goldenrod"/>                </svg:marker>                <svg:marker id="green_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="5" fill="green"/>                </svg:marker>                <svg:marker id="blue_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="5" fill="blue"/>                </svg:marker>                <svg:marker id="blue_hollow_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="4" fill="white" stroke="blue" stroke-width="2"/>                </svg:marker>                <svg:marker id="red_hollow_dot" viewBox="0 0 10 10" refX="5" refY="5" markerUnits="strokeWidth" markerWidth="4" markerHeight="4" orient="auto">                    <svg:circle cx="5" cy="5" r="4" fill="white" stroke="red" stroke-width="2"/>                </svg:marker>            </svg:defs>        </svg:svg>        <h1>            Graphing Linear Equations in            <var>x</var> and            <var>y</var>        </h1>        <div class="rule">            <h3>                Graph of an Equation in                 <var>x</var> and                <var>y</var>            </h3>            <p>                The graph of an equation in                <var>x</var> and                <var>y</var> is the plot of all its solutions (which are                <em>ordered pairs</em>)                in a Cartesian coordinate system.            </p>        </div>        <div class="rule">            <h3>                Linear Equation in                <var>x</var> and                <var>y</var>            </h3>            <p>                A linear equation in                <var>x</var> and                <var>y</var> is an equation that can be                written in the form                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mi>A</mi>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mrow>                            <mi>B</mi>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                    </mrow>                    <mo>=</mo>                    <mi>C</mi>                </math>,                where not both                <var>A</var> and                <var>B</var> are zero.            </p>            <p>                The graph of a linear equation is a line.            </p>        </div>        <h4>            Graphing a Linear Equation        </h4>        <p>            <ol>                <li>                    Find two solutions of the linear equation.                </li>                <li>                    Plot the solutions.                </li>                <li>                    Draw the line through the two points.                </li>            </ol>        </p>        <div class="example">            <p class="statement">                Graph                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mi>x</mi>                        <mo>+</mo>                        <mi>y</mi>                    </mrow>                    <mo>=</mo>                    <mn>5</mn>                </math>.            </p>            <p>                The equation                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mi>x</mi>                        <mo>+</mo>                        <mi>y</mi>                    </mrow>                    <mo>=</mo>                    <mn>5</mn>                </math> is linear.            </p>            <p>                <ol>                    <li>                        <p>Find two solutions of                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>.                        Since there are infinitely many solutions,                        there are many possibilities.                        </p>                        <p>                            Substitute 7 for                            <var>x</var> in                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>, and solve for                            <var>y</var>.                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mi mathcolor="red">x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mn mathcolor="red">7</mn>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mi>y</mi>                                <mo>=</mo>                                <mrow>                                    <mo>-</mo>                                    <mn>2</mn>                                </mrow>                            </math>                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>7</mn>                                    <mrow>                                        <mo>-</mo>                                        <mn>2</mn>                                    </mrow>                                </mfenced>                            </math> is a solution.                        </p>                        <p>                            Substitute 1 for                            <var>x</var> in                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>, and solve for                            <var>y</var>.                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mi mathcolor="red">x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mn mathcolor="red">1</mn>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mi>y</mi>                                <mo>=</mo>                                <mn>4</mn>                            </math>                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>1</mn>                                    <mn>4</mn>                                </mfenced>                            </math> is a solution.                        </p>                    </li>                    <li>                        <p>Plot the solutions                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>7</mn>                                    <mrow>                                        <mo>-</mo>                                        <mn>2</mn>                                    </mrow>                                </mfenced>                            </math>                            and                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>1</mn>                                    <mn>4</mn>                                </mfenced>                            </math>.                        </p>                        <p>                            <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                                <svg:use xlink:href="#coordinate_system"/>                                <svg:circle cx="350" cy="100" r="10" stroke="none" fill="red"/>                                <svg:circle cx="50" cy="-200" r="10" stroke="none" fill="red"/>                            </svg:svg>                        </p>                    </li>                    <li>                        <p>Draw the                            <span style="color: blue">line</span> through the two points                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>7</mn>                                    <mrow>                                        <mo>-</mo>                                        <mn>2</mn>                                    </mrow>                                </mfenced>                            </math>                            and                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>1</mn>                                    <mn>4</mn>                                </mfenced>                            </math>.                        </p>                        <p>                            <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                                <svg:use xlink:href="#coordinate_system"/>                                <svg:line x1="-250" y1="-500" x2="500" y2="250" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                                <svg:circle cx="350" cy="100" r="10" stroke="none" fill="red"/>                                <svg:circle cx="50" cy="-200" r="10" stroke="none" fill="red"/>                            </svg:svg>                        </p>                    </li>                </ol>            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-250" y1="-500" x2="500" y2="250" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                </svg:svg>            </p>        </div>        <p>           Any two solutions of the linear equation can be used to graph it. In the next example,            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                <mrow>                    <mi>x</mi>                    <mo>+</mo>                    <mi>y</mi>                </mrow>                <mo>=</mo>                <mn>5</mn>            </math> will be graphed again using solutions different from the solutions                            used in the previous example. The final answer is the same.        </p>        <div class="example">            <p class="statement">                Graph                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mi>x</mi>                        <mo>+</mo>                        <mi>y</mi>                    </mrow>                    <mo>=</mo>                    <mn>5</mn>                </math>.            </p>            <p>                The equation                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mi>x</mi>                        <mo>+</mo>                        <mi>y</mi>                    </mrow>                    <mo>=</mo>                    <mn>5</mn>                </math> is linear.            </p>            <p>                <ol>                    <li>                        <p>Find two solutions of                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>.                        </p>                        <p>                            Substitute 2 for                            <var>y</var> in                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>, and solve for                            <var>x</var>.                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mi mathcolor="red">y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mn mathcolor="red">2</mn>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mi>x</mi>                                <mo>=</mo>                                <mn>3</mn>                            </math>                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>3</mn>                                    <mn>2</mn>                                </mfenced>                            </math> is a solution.                        </p>                        <p>                            Substitute                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mo>-</mo>                                <mn>4</mn>                            </math> for                            <var>x</var> in                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mrow>                                    <mi>x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>, and solve for                            <var>y</var>.                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mi mathcolor="red">x</mi>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mrow>                                    <mstyle mathcolor="red">                                        <mrow>                                            <mo>-</mo>                                            <mn>4</mn>                                        </mrow>                                    </mstyle>                                    <mo>+</mo>                                    <mi>y</mi>                                </mrow>                                <mo>=</mo>                                <mn>5</mn>                            </math>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                                <mi>y</mi>                                <mo>=</mo>                                <mn>9</mn>                            </math>                        </p>                        <p>                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mrow>                                        <mo>-</mo>                                        <mn>4</mn>                                    </mrow>                                    <mn>9</mn>                                </mfenced>                            </math> is a solution.                        </p>                    </li>                    <li>                        <p>Plot the solutions                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>3</mn>                                    <mn>2</mn>                                </mfenced>                            </math>                            and                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mrow>                                        <mo>-</mo>                                        <mn>4</mn>                                    </mrow>                                    <mn>9</mn>                                </mfenced>                            </math>.                        </p>                        <p>                            <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                                <svg:use xlink:href="#coordinate_system"/>                                <svg:circle cx="150" cy="-100" r="10" stroke="none" fill="red"/>                                <svg:circle cx="-200" cy="-450" r="10" stroke="none" fill="red"/>                            </svg:svg>                        </p>                    </li>                    <li>                        <p>Draw the                            <span style="color: blue">line</span> through the two points                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mn>3</mn>                                    <mn>2</mn>                                </mfenced>                            </math>                            and                            <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                                <mfenced>                                    <mrow>                                        <mo>-</mo>                                        <mn>4</mn>                                    </mrow>                                    <mn>9</mn>                                </mfenced>                            </math>.                        </p>                        <p>                            <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                                <svg:use xlink:href="#coordinate_system"/>                                <svg:line x1="-250" y1="-500" x2="500" y2="250" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                                <svg:circle cx="150" cy="-100" r="10" stroke="none" fill="red"/>                                <svg:circle cx="-200" cy="-450" r="10" stroke="none" fill="red"/>                            </svg:svg>                        </p>                    </li>                </ol>            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-250" y1="-500" x2="500" y2="250" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                </svg:svg>            </p>        </div>        <p>            Finding three solutions instead of two solutions may catch any errors made. If            the three points are not on a line, an error has been made.        </p>        <div class="example">            <p class="statement">                Graph                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mn>3</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                    </mrow>                    <mo>=</mo>                    <mn>12</mn>                </math>.            </p>            <p>                Find three solutions to                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mn>3</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                    </mrow>                    <mo>=</mo>                    <mn>12</mn>                </math>.            </p>            <div class="three_columnar">                <p>                            Substitute 0 for                    <var>y</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>, and solve for                    <var>x</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi mathcolor="red">y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn mathcolor="red">0</mn>                                </mfenced>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>3</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>x</mi>                        <mo>=</mo>                        <mn>4</mn>                    </math>                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>4</mn>                            <mn>0</mn>                        </mfenced>                    </math> is a solution.                </p>            </div>            <div class="three_columnar">                <p>                            Substitute 0 for                    <var>x</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>, and solve for                    <var>y</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mi mathcolor="red">x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn mathcolor="red">0</mn>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mn>6</mn>                    </math>                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>0</mn>                            <mn>6</mn>                        </mfenced>                    </math> is a solution.                </p>            </div>            <div class="three_columnar">                <p>                            Substitute                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mo>-</mo>                        <mn>2</mn>                    </math> for                    <var>x</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>, and solve for                    <var>y</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mi mathcolor="red">x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>3</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mstyle mathcolor="red">                                        <mrow>                                            <mo>-</mo>                                            <mn>2</mn>                                        </mrow>                                    </mstyle>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mo>-</mo>                                <mn>6</mn>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>12</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>18</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mn>9</mn>                    </math>                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mrow>                                <mo>-</mo>                                <mn>2</mn>                            </mrow>                            <mn>9</mn>                        </mfenced>                    </math> is a solution.                </p>            </div>            <p>                Plot                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>4</mn>                        <mn>0</mn>                    </mfenced>                </math>,                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>0</mn>                        <mn>6</mn>                    </mfenced>                </math>, and                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mrow>                            <mo>-</mo>                            <mn>2</mn>                        </mrow>                        <mn>9</mn>                    </mfenced>                </math>.            </p>            <p>                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:circle cx="200" cy="0" r="10" stroke="none" fill="red"/>                    <svg:circle cx="0" cy="-300" r="10" stroke="none" fill="red"/>                    <svg:circle cx="-100" cy="-450" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>            <p>                Draw the                <span style="color: blue">line</span> through the three points.            </p>            <p>                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-133.333" y1="-500" x2="500" y2="450" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:circle cx="200" cy="0" r="10" stroke="none" fill="red"/>                    <svg:circle cx="0" cy="-300" r="10" stroke="none" fill="red"/>                    <svg:circle cx="-100" cy="-450" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-133.333" y1="-500" x2="500" y2="450" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                </svg:svg>            </p>        </div>        <div class="rule">            <h3>                <var>x</var>-intercept            </h3>            <p>                A point on a graph that is also on the                 <var>x</var>-axis is called an                <var>x</var>-intercept.            </p>            <p>                To find an                 <var>x</var>-intercept for the graph of an equation, substitute 0 for                <var>y</var>                in the equation, and solve for                <var>x</var>.            </p>        </div>        <div class="rule">            <h3>                <var>y</var>-intercept            </h3>            <p>                A point on a graph that is also on the                 <var>y</var>-axis is called a                <var>y</var>-intercept.            </p>            <p>                To find a                 <var>y</var>-intercept for the graph of an equation, substitute 0 for                <var>x</var>                in the equation, and solve for                <var>y</var>.            </p>        </div>        <div class="example">            <p class="statement">                Find the                <var>x</var>-intercept and the                <var>y</var>-intercept for the graph of                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>-</mo>                        <mi>y</mi>                    </mrow>                    <mo>=</mo>                    <mn>8</mn>                </math>. Then draw the graph of                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>-</mo>                        <mi>y</mi>                    </mrow>                    <mo>=</mo>                    <mn>8</mn>                </math>.            </p>            <div class="two_columnar">                <p>                    Find the                    <var>x</var>-intercept by substituting 0 for                    <var>y</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>-</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>8</mn>                    </math>                    and then solving for                    <var>x</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>-</mo>                            <mn>0</mn>                        </mrow>                        <mo>=</mo>                        <mn>8</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>=</mo>                        <mn>8</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>x</mi>                        <mo>=</mo>                        <mn>4</mn>                    </math>                </p>                <p>                    The                    <var>x</var>-intercept is                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>4</mn>                            <mn>0</mn>                        </mfenced>                    </math>.                </p>            </div>            <div class="two_columnar">                <p>                    Find the                    <var>y</var>-intercept by substituting 0 for                    <var>x</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>-</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>8</mn>                    </math>                    and then solving for                    <var>y</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>0</mn>                                </mfenced>                            </mrow>                            <mo>-</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>8</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>0</mn>                            <mo>-</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>8</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mo>-</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>8</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mo>-</mo>                            <mn>8</mn>                        </mrow>                    </math>                </p>                <p>                    The                    <var>y</var>-intercept is                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>0</mn>                            <mrow>                                <mo>-</mo>                                <mn>8</mn>                            </mrow>                        </mfenced>                    </math>.                </p>            </div>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-50" y1="500" x2="450" y2="-500" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:circle cx="200" cy="0" r="10" stroke="none" fill="red"/>                    <svg:circle cx="0" cy="400" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>        </div>        <p>            Sometimes using the intercepts to draw the graph is awkward for practical reasons.        </p>        <div class="example">            <p class="statement">                Find the                <var>x</var>-intercept and the                <var>y</var>-intercept for the graph of                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mrow>                                <mo>-</mo>                                <mn>7</mn>                            </mrow>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                    </mrow>                    <mo>=</mo>                    <mn>42</mn>                </math>. Then draw the graph of                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mrow>                                <mo>-</mo>                                <mn>7</mn>                            </mrow>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                    </mrow>                    <mo>=</mo>                    <mn>42</mn>                </math>.            </p>            <div class="two_columnar">                <p>                    Find the                    <var>x</var>-intercept by substituting 0 for                    <var>y</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mn>7</mn>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    and then solving for                    <var>x</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mn>7</mn>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>0</mn>                                </mfenced>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mo>-</mo>                                <mn>7</mn>                            </mrow>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>x</mi>                        <mo>=</mo>                        <mrow>                            <mo>-</mo>                            <mn>6</mn>                        </mrow>                    </math>                </p>                <p>                    The                    <var>x</var>-intercept is                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mrow>                                <mo>-</mo>                                <mn>6</mn>                            </mrow>                            <mn>0</mn>                        </mfenced>                    </math>.                </p>            </div>            <div class="two_columnar">                <p>                    Find the                    <var>y</var>-intercept by substituting 0 for                    <var>x</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mn>7</mn>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    and then solving for                    <var>y</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mn>7</mn>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>0</mn>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mn>21</mn>                    </math>                </p>                <p>                    The                    <var>y</var>-intercept is                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>0</mn>                            <mn>21</mn>                        </mfenced>                    </math>.                </p>            </div>            <p>                Since                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>0</mn>                        <mn>21</mn>                    </mfenced>                </math> is not on the Cartesian coordinate system                    on which I plan to graph, I find another solution.            </p>            <div class="two_columnar">                <p>                    Substitute                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mo>-</mo>                        <mn>4</mn>                    </math> for                    <var>x</var> in                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mn>7</mn>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>,                    and then solve for                    <var>y</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mn>7</mn>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mrow>                                        <mo>-</mo>                                        <mn>4</mn>                                    </mrow>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>28</mn>                            <mo>+</mo>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>42</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>14</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mn>7</mn>                    </math>                </p>                <p>                    The point                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mrow>                                <mo>-</mo>                                <mn>4</mn>                            </mrow>                            <mn>7</mn>                        </mfenced>                    </math> is on the graph.                </p>            </div>            <p>                Plot                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mrow>                            <mo>-</mo>                            <mn>6</mn>                        </mrow>                        <mn>0</mn>                    </mfenced>                </math>                    and                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mrow>                            <mo>-</mo>                            <mn>4</mn>                        </mrow>                        <mn>7</mn>                    </mfenced>                </math>. Then draw the line through them.            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-442.857" y1="500" x2="-157.143" y2="-500" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:circle cx="-300" cy="0" r="10" stroke="none" fill="red"/>                    <svg:circle cx="-200" cy="-350" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>        </div>        <p>            Sometimes fractions arise.        </p>        <div class="example">            <p class="statement">                Draw the graph of                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mi>y</mi>                    <mo>=</mo>                    <mrow>                        <mrow>                            <mrow>                                <mo>-</mo>                                <mstyle scriptlevel="-1">                                    <mfrac>                                        <mn>2</mn>                                        <mn>3</mn>                                    </mfrac>                                </mstyle>                            </mrow>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                </math>.            </p>            <p>                Find solutions to                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mi>y</mi>                    <mo>=</mo>                    <mrow>                        <mrow>                            <mrow>                                <mo>-</mo>                                <mstyle scriptlevel="-1">                                    <mfrac>                                        <mn>2</mn>                                        <mn>3</mn>                                    </mfrac>                                </mstyle>                            </mrow>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                </math>.                Since the equation is solved for                <var>y</var>, it is easiest to substitute                numbers for                 <var>x</var> and then to find the corresponding values of                <var>y</var>.            </p>            <div class="three_columnar">                <p>Substitute 0 for                    <var>x</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mfrac>                                        <mn>2</mn>                                        <mn>3</mn>                                    </mfrac>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>0</mn>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mn>5</mn>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mn>0</mn>                            <mo>+</mo>                            <mn>5</mn>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mn>5</mn>                    </math>                </p>                <p>                    The point                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>0</mn>                            <mn>5</mn>                        </mfenced>                    </math> is on the graph.                </p>            </div>            <div class="three_columnar">                <p>Substitute 2 for                    <var>x</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mfrac>                                        <mn>2</mn>                                        <mn>3</mn>                                    </mfrac>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>2</mn>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mn>5</mn>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mrow>                                <mo>-</mo>                                <mfrac>                                    <mn>4</mn>                                    <mn>3</mn>                                </mfrac>                            </mrow>                            <mo>+</mo>                            <mn>5</mn>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mrow>                                <mo>-</mo>                                <mfrac>                                    <mn>4</mn>                                    <mn>3</mn>                                </mfrac>                            </mrow>                            <mo>+</mo>                            <mfrac>                                <mn>15</mn>                                <mn>3</mn>                            </mfrac>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mfrac>                            <mn>11</mn>                            <mn>3</mn>                        </mfrac>                    </math>                </p>                <p>                    The point                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>2</mn>                            <mstyle scriptlevel="-1">                                <mfrac>                                    <mn>11</mn>                                    <mn>3</mn>                                </mfrac>                            </mstyle>                        </mfenced>                    </math> is on the graph.                </p>                <p>                    Plotting a point with a fractional coordinate                    is a nuisance. The next number substituted for                    <var>x</var> will be a multiple of 3                    so that its product with                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mstyle scriptlevel="-1">                            <mfrac>                                <mn>2</mn>                                <mn>3</mn>                            </mfrac>                        </mstyle>                    </math> will be an integer.                </p>            </div>            <div class="three_columnar">                <p>Substitute 6 for                    <var>x</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mrow>                                <mrow>                                    <mo>-</mo>                                    <mfrac>                                        <mn>2</mn>                                        <mn>3</mn>                                    </mfrac>                                </mrow>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>6</mn>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mn>5</mn>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mrow>                                <mo>-</mo>                                <mn>4</mn>                            </mrow>                            <mo>+</mo>                            <mn>5</mn>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mn>1</mn>                    </math>                </p>                <p>                    The point                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>6</mn>                            <mn>1</mn>                        </mfenced>                    </math> is on the graph.                </p>            </div>            <p>                Plot                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>0</mn>                        <mn>5</mn>                    </mfenced>                </math>                    and                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>6</mn>                        <mn>1</mn>                    </mfenced>                </math>. Then draw the line through the two points.            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-375" y1="-500" x2="500" y2="83.333" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:circle cx="0" cy="-250" r="10" stroke="none" fill="red"/>                    <svg:circle cx="300" cy="-50" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>        </div>        <div class="example">            <p class="statement">                Graph                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mrow>                            <mn>5</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                    </mrow>                    <mo>=</mo>                    <mn>0</mn>                </math>.            </p>            <div class="two_columnar">                <p>                    Find the                    <var>x</var>-intercept by substituting 0 for                    <var>y</var>                    and then solving for                    <var>x</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>5</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>0</mn>                                </mfenced>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mn>0</mn>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>2</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>x</mi>                        <mo>=</mo>                        <mn>0</mn>                    </math>                </p>                <p>                    The                    <var>x</var>-intercept is                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>0</mn>                            <mn>0</mn>                        </mfenced>                    </math>.                </p>            </div>            <div class="two_columnar">                <p>                    Find the                    <var>y</var>-intercept by substituting 0 for                    <var>x</var>                    and then solving for                    <var>y</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>0</mn>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>5</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>0</mn>                            <mo>+</mo>                            <mrow>                                <mn>5</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>5</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mn>0</mn>                    </math>                </p>                <p>                    The                    <var>y</var>-intercept is                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>0</mn>                            <mn>0</mn>                        </mfenced>                    </math>.                </p>            </div>            <p>                The                <var>x</var>-intercept and the                <var>y</var>-intercept are the same point.                It takes two                <em>different</em> points to determine a line. Find another point on the graph.            </p>            <div class="two_columnar">                <p>                    Substitute                    10 for                    <var>x</var>,                    and then solve for                    <var>y</var>.                </p>                <p>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mrow>                                <mn>2</mn>                                <mo>&InvisibleTimes;</mo>                                <mfenced>                                    <mn>10</mn>                                </mfenced>                            </mrow>                            <mo>+</mo>                            <mrow>                                <mn>5</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>20</mn>                            <mo>+</mo>                            <mrow>                                <mn>5</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>y</mi>                            </mrow>                        </mrow>                        <mo>=</mo>                        <mn>0</mn>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mrow>                            <mn>5</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>y</mi>                        </mrow>                        <mo>=</mo>                        <mrow>                            <mo>-</mo>                            <mn>20</mn>                        </mrow>                    </math>                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mo>-</mo>                            <mn>4</mn>                        </mrow>                    </math>                </p>                <p>                    The point                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mfenced>                            <mn>10</mn>                            <mrow>                                <mo>-</mo>                                <mn>4</mn>                            </mrow>                        </mfenced>                    </math> is on the graph.                </p>            </div>            <p>                Plot                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>0</mn>                        <mn>0</mn>                    </mfenced>                </math>                    and                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>10</mn>                        <mrow>                            <mo>-</mo>                            <mn>4</mn>                        </mrow>                    </mfenced>                </math>. Then draw the line through the two points.            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:use xlink:href="#coordinate_system"/>                    <svg:line x1="-500" y1="-200" x2="520" y2="208" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:circle cx="0" cy="0" r="10" stroke="none" fill="red"/>                    <svg:circle cx="500" cy="200" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>        </div>        <p>            An equation in             <var>x</var> and            <var>y</var> must not have any variable            besides             <var>x</var> and            <var>y</var>, but it is not required to use both            <var>x</var> and            <var>y</var>.        </p>        <div class="example">            <p class="statement">                Graph                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mi>x</mi>                    <mo>=</mo>                    <mn>2</mn>                </math>.            </p>            <p>                <em>Every</em> ordered pair whose                <var>x</var>-coordinate is 2                is a solution of the equation                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mi>x</mi>                    <mo>=</mo>                    <mn>2</mn>                </math>.            </p>            <p>                Plot                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>2</mn>                        <mrow>                            <mo>-</mo>                            <mn>7</mn>                        </mrow>                    </mfenced>                </math>                    and                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>2</mn>                        <mn>5</mn>                    </mfenced>                </math>. Then draw the line through the two points.            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:line x1="100" y1="-500" x2="100" y2="500" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:use xlink:href="#coordinate_system"/>                    <svg:circle cx="100" cy="350" r="10" stroke="none" fill="red"/>                    <svg:circle cx="100" cy="-250" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>        </div>        <div class="example">            <p class="statement">                Graph                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mi>y</mi>                    <mo>=</mo>                    <mn>6</mn>                </math>.            </p>            <p>                <em>Every</em> ordered pair whose                <var>y</var>-coordinate is 6                is a solution of the equation                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mi>y</mi>                    <mo>=</mo>                    <mn>6</mn>                </math>.            </p>            <p>                Plot                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mn>4</mn>                        <mn>6</mn>                    </mfenced>                </math>                    and                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mfenced>                        <mrow>                            <mo>-</mo>                            <mn>9</mn>                        </mrow>                        <mn>6</mn>                    </mfenced>                </math>. Then draw the line through the two points.            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:line x1="-500" y1="-300" x2="500" y2="-300" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:use xlink:href="#coordinate_system"/>                    <svg:circle cx="200" cy="-300" r="10" stroke="none" fill="red"/>                    <svg:circle cx="-450" cy="-300" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>        </div>        <div class="example">            <p class="statement">                Graph                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mi>x</mi>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                    <mo>=</mo>                    <mn>1</mn>                </math>.            </p>            <p>                Solve                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mi>x</mi>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                    <mo>=</mo>                    <mn>1</mn>                </math>                for                <var>x</var>.            </p>            <p>                <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                    <mrow>                        <mi>x</mi>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                    <mo>=</mo>                    <mn>1</mn>                </math>                <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                    <mi>x</mi>                    <mo>=</mo>                    <mrow>                        <mo>-</mo>                        <mn>4</mn>                    </mrow>                </math>            </p>            <p>                <em>Every</em> ordered pair whose                <var>x</var>-coordinate is                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mo>-</mo>                        <mn>4</mn>                    </mrow>                </math>                is a solution.            </p>            <p>                Plot some ordered pairs whose                <var>x</var>-coordinates are                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mrow>                        <mo>-</mo>                        <mn>4</mn>                    </mrow>                </math>.                Draw the line through the points.            </p>            <p class="statement">                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-550 -550 1100 1100"                preserveAspectRatio="xMidYMid" width="500" height="500">                    <svg:line x1="-200" y1="-512" x2="-200" y2="500" stroke="blue" stroke-width="8"                    marker-start="url(#blue_left_arrowhead)" marker-end="url(#blue_right_arrowhead)"/>                    <svg:use xlink:href="#coordinate_system"/>                    <svg:circle cx="-200" cy="-500" r="10" stroke="none" fill="red"/>                    <svg:circle cx="-200" cy="-150" r="10" stroke="none" fill="red"/>                    <svg:circle cx="-200" cy="300" r="10" stroke="none" fill="red"/>                    <svg:circle cx="-200" cy="450" r="10" stroke="none" fill="red"/>                </svg:svg>            </p>        </div>        <div class="example">            <div class="statement">                <p>The weight                    <var>y</var> (in ounces) of a snake longer than 6 inches                can be approximated by the linear equation                    <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                        <mi>y</mi>                        <mo>=</mo>                        <mrow>                            <mrow>                                <mn>1.5</mn>                                <mo>&InvisibleTimes;</mo>                                <mi>x</mi>                            </mrow>                            <mo>+</mo>                            <mn>5</mn>                        </mrow>                    </math>,                where                    <var>x</var> is the length of the snake in inches.                </p>                <p>                    Use the equation to approximate the weight of a snake whose length is 12 inches.                </p>                <svg:svg version="1.1" xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-1000 -30 2000 60"                preserveAspectRatio="xMidYMid" width="1000" height="30">                    <svg:defs>                        <svg:pattern id="snake" patternUnits="userSpaceOnUse"             x="0" y="0" width="100" height="100"             viewBox="0 0 10 10" >                            <svg:rect x="0" y="0" width="10" height="10" stroke="none" fill="gold"/>                            <svg:rect x="2" y="0" width="1" height="10" stroke="none" fill="black"/>                            <svg:rect x="3" y="0" width="3" height="10" stroke="none" fill="red"/>                            <svg:rect x="6" y="0" width="1" height="10" stroke="none" fill="black"/>                        </svg:pattern>                    </svg:defs>                    <svg:line x1="900" y1="0" x2="930" y2="0" stroke="red" stroke-width="7"/>                    <svg:line x1="930" y1="0" x2="950" y2="-20" stroke="red" stroke-width="7"/>                    <svg:line x1="930" y1="0" x2="950" y2="20" stroke="red" stroke-width="7"/>                    <svg:rect x="-900" y="-25" width="1800" height="50" rx="25" ry="25" stroke="black" stroke-width="5" fill="url(#snake)"/>                </svg:svg>            </div>            <p>                Substitute 12 for                <var>x</var> in                <math xmlns="http://www.w3.org/1998/Math/MathML" display="inline">                    <mi>y</mi>                    <mo>=</mo>                    <mrow>                        <mrow>                            <mn>1.5</mn>                            <mo>&InvisibleTimes;</mo>                            <mi>x</mi>                        </mrow>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                </math>.            </p>            <p>                <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                    <mi>y</mi>                    <mo>=</mo>                    <mrow>                        <mrow>                            <mn>1.5</mn>                            <mo>&InvisibleTimes;</mo>                            <mfenced>                                <mn>12</mn>                            </mfenced>                        </mrow>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                </math>                <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                    <mi>y</mi>                    <mo>=</mo>                    <mrow>                        <mn>18</mn>                        <mo>+</mo>                        <mn>5</mn>                    </mrow>                </math>                <math xmlns="http://www.w3.org/1998/Math/MathML" display="block">                    <mi>y</mi>                    <mo>=</mo>                    <mn>23</mn>                </math>            </p>            <p class="statement">                The weight of a snake whose length is 12 inches is approximately 23 ounces.            </p>        </div>    </body></html>