-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathequations1.html
More file actions
98 lines (97 loc) · 4.48 KB
/
equations1.html
File metadata and controls
98 lines (97 loc) · 4.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>LearnZilla | Subjects | Algebra</title>
<link rel="stylesheet" type="text/css" href="StyleSheet1.css" />
<link rel="icon" type="image/bmp" href="favicon.bmp" />
<script type="text/javascript" src="profile.js"></script>
<script type="text/javascript" src="performance.js"></script>
<script type="text/javascript" src="clock.js"></script>
</head>
<body>
<!--main-->
<div class="main">
<!--header-->
<div class="header">
<img id="center" src="learnzilla.bmp" width="550" alt="Learnzilla" />
</div>
<!--nav-->
<div class="nav">
<a class="navlinks" href="home.html">Home</a>
<a class="navlinks" href="about.html">About</a>
<a class="navlinks" id="currentnav">Subjects</a>
<a class="navlinks" href="login.html">Login</a>
<a class="navlinks" href="progress.html">Progress</a>
</div>
<!--content-->
<div class="content">
<h3>Solving Radical Equations</h3>
<p>In this lesson, you will learn how to solve equations with radicals.</p>
<p>Solving radical equations is a long process of simplifying, factoring, and testing with the given values of an equation. The standard steps of solving these equations are animated in the following video:</p>
<video src="solving_equation.mp4" type="video/mp4" width="650" alt="Solving radical equation" controls></video>
<p>Put into words, the steps are as follows:</p>
<p>1. Simplify equation by isolating values of differing powers:</p>
<span class="math">
√<span id="rad">x - 3</span> + 5 = x <br />
  - 5     - 5 <br />
√<span id="rad">x - 3</span> = x - 5 <br />
(√<span id="rad">x - 3</span>)² = (x - 5)² <br />
x - 3 = (x - 5)(x - 5)
</span>
<br />
<p>2. Factor to simplify further:</p>
<span class="math">
x - 3 = (x - 5)(x - 5) <br />
x - 3 = x² -5x - 5x +25 <br />
x - 3 = x² -10x +25 <br />
-x       -x <br />
-3 = x² -11x +25 <br />
+3         +3 <br />
0 = x² -11x +28 <br />
0 = (x - 7)(x - 4)
</span>
<br />
<p>3. Elimanate extraneous solutions and find real solutions:</p>
<span class="math">
0 = (x - 7)(x - 4) <br />
0 = x - 7   0 = x - 4 <br />
+7   +7   +4   +4 <br />
7 = x   OR   4 = x <br /><br />
√<span id="rad">(7) - 3</span> + 5 = (7) <br />
√<span id="rad">4</span> + 5 = 7 <br />
2 + 5 = 7 <br />
7 = 7   ✓<br /><br />
√<span id="rad">(4) - 3</span> + 5 = (4) <br />
√<span id="rad">1</span> + 5 = 4 <br />
1 + 5 = 4 <br />
6 ≠ 4   ✗
</span>
<br />
<p>4 is an <span class="tooltip">extraneous solution<span class="tooltiptext">A solution of the simplified form of an equation that does not satisfy the original equation and must be discarded</span></span> and is false; 7 is the true solution.</p>
<br />
<a class="nextlink" href="equations2.html">Next ›</a>
<br /><br /><br />
</div>
<!--footer-->
<div class="footer">
<table class="cleartable">
<tr>
<td width="650">
<i>TEAM #2068</i>
<br />
<i>Software Development</i>
<br />
<i>Technology Student Association</i>
</td>
<td width="100">
<a href="https://tsaweb.org/">
<img class="footerimg" src="tsa_logo.png" width="100" alt="TSA Logo" />
</a>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>