|
133 | 133 | "\n", |
134 | 134 | "\\begin{equation}\\textbf{5x} + 1 \\textbf{- 2x} = 22 \\end{equation}\n", |
135 | 135 | "\n", |
136 | | - "In this equation, the left side includes the terms **5x** and **- 2x**, both of which represent the variable **x** multiplied by a coefficent. Note that we include the sign (+ or -) in front of the value.\n", |
| 136 | + "In this equation, the left side includes the terms **5x** and **- 2x**, both of which represent the variable **x** multiplied by a coefficient. Note that we include the sign (+ or -) in front of the value.\n", |
137 | 137 | "\n", |
138 | 138 | "We can rewrite the equation to combine these like terms:\n", |
139 | 139 | "\n", |
|
151 | 151 | "\n", |
152 | 152 | "\\begin{equation}3x = 21 \\end{equation}\n", |
153 | 153 | "\n", |
154 | | - "Then we'll deal with the coefficients - in this case x is multiplied by 3, so we'll divide by 3 on boths sides to remove that:\n", |
| 154 | + "Then we'll deal with the coefficients - in this case x is multiplied by 3, so we'll divide by 3 on both sides to remove that:\n", |
155 | 155 | "\n", |
156 | 156 | "\\begin{equation}\\frac{3x}{3} = \\frac{21}{3} \\end{equation}\n", |
157 | 157 | "\n", |
|
202 | 202 | "\n", |
203 | 203 | "\\begin{equation}\\frac{x}{3} = 15 \\end{equation}\n", |
204 | 204 | "\n", |
205 | | - "Now we need to deal with the fraction on the left so that we're left with just **x**. The fraction is <sup>x</sup>/<sub>3</sub> which is another way of saying *x divided by 3*, so we can apply the opposite operation to both sides. In this case, we need to multiply both sides by the denominator under our variable, which is 3. To make it easier to work with a term that contains fractions, we can express whole numbers as fractions with a denominator of 1; so on the left, we can express 3 as <sup>3</sup>/<sub>1</sub> and multiply it with <sup>x</sup>/<sub>3</sub>. Note that the notation for mutiplication is a **•** symbol rather than the standard *x* multiplication operator (which would cause confusion with the variable **x**) or the asterisk symbol used by most programming languages.\n", |
| 205 | + "Now we need to deal with the fraction on the left so that we're left with just **x**. The fraction is <sup>x</sup>/<sub>3</sub> which is another way of saying *x divided by 3*, so we can apply the opposite operation to both sides. In this case, we need to multiply both sides by the denominator under our variable, which is 3. To make it easier to work with a term that contains fractions, we can express whole numbers as fractions with a denominator of 1; so on the left, we can express 3 as <sup>3</sup>/<sub>1</sub> and multiply it with <sup>x</sup>/<sub>3</sub>. Note that the notation for multiplication is a **•** symbol rather than the standard *x* multiplication operator (which would cause confusion with the variable **x**) or the asterisk symbol used by most programming languages.\n", |
206 | 206 | "\n", |
207 | 207 | "\\begin{equation}\\frac{3}{1} \\cdot \\frac{x}{3} = 15 \\cdot 3 \\end{equation}\n", |
208 | 208 | "\n", |
|
371 | 371 | "\n", |
372 | 372 | "\\begin{equation}\\textbf{4(x + 2)} + \\textbf{3(x - 2)} = 16 \\end{equation}\n", |
373 | 373 | "\n", |
374 | | - "The equation includes two operations in parenthesis: **4(*x* + 2)** and **3(*x* - 2)**. Each of these operations consists of a constant by which the contents of the parenthesis must be multipled: for example, 4 times (*x* + 2). The distributive property means that we can achieve the same result by multiplying each term in the parenthesis and adding the results, so for the first parenthetical operation, we can multiply 4 by *x* and add it to 4 times +2; and for the second parenthetical operation, we can calculate 3 times *x* + 3 times -2). Note that the constants in the parenthesis include the sign (+ or -) that preceed them:\n", |
| 374 | + "The equation includes two operations in parenthesis: **4(*x* + 2)** and **3(*x* - 2)**. Each of these operations consists of a constant by which the contents of the parenthesis must be multiplied: for example, 4 times (*x* + 2). The distributive property means that we can achieve the same result by multiplying each term in the parenthesis and adding the results, so for the first parenthetical operation, we can multiply 4 by *x* and add it to 4 times +2; and for the second parenthetical operation, we can calculate 3 times *x* + 3 times -2). Note that the constants in the parenthesis include the sign (+ or -) that proceed them:\n", |
375 | 375 | "\n", |
376 | 376 | "\\begin{equation}4x + 8 + 3x - 6 = 16 \\end{equation}\n", |
377 | 377 | "\n", |
|
387 | 387 | "\n", |
388 | 388 | "\\begin{equation}\\frac{7x}{7} = \\frac{14}{7} \\end{equation}\n", |
389 | 389 | "\n", |
390 | | - "Which gives us our anwer:\n", |
| 390 | + "Which gives us our answer:\n", |
391 | 391 | "\n", |
392 | 392 | "\\begin{equation}x = 2 \\end{equation}\n", |
393 | 393 | "\n", |
|
422 | 422 | "x = 2\n", |
423 | 423 | "4*(x + 2) + 3*(x - 2) == 16" |
424 | 424 | ] |
425 | | - }, |
426 | | - { |
427 | | - "cell_type": "code", |
428 | | - "execution_count": null, |
429 | | - "metadata": {}, |
430 | | - "outputs": [], |
431 | | - "source": [] |
432 | 425 | } |
433 | 426 | ], |
434 | 427 | "metadata": { |
|
0 commit comments