-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.html
More file actions
57 lines (57 loc) · 2.46 KB
/
Copy pathvariables.html
File metadata and controls
57 lines (57 loc) · 2.46 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
<!DOCTYPE html>
<html>
<head>
<title>Variables | rowannerd</title>
<style>
body {
background-color: rgb(0, 10, 200);
font-family: sans-serif;
width: 600px;
}
.middle {
text-align: center;
}
.greent {
color: rgb(0, 250, 0);
}
.hspace {
height: 100px;
}
a {
color: rgb(250, 0, 250);
text-decoration: none;
}
</style>
</head>
<body class="greent">
<h1 class="middle">Variables | rowannerd</h1>
<h2>Contentents</h2>
<ul><b>
<li><a href="#intro">Introduction</a></li>
<li><a href="#wvariables">What <i>are</i> Variables?</a></li>
<li><a href="#equation">How to Solve Equations</a></li>
</ul></b>
<div class="hspace"></div>
<h2 id="intro">Introduction</h2>
<p>Variables are used in every day life, and just knowing about them will unlock a whole other world of mathematics.</p>
<div class="hspace"></div>
<h2 id="wvariables">What Exactly are Variables?</h2>
<p>Variables are 'substitutes' for unknown values. They are most commonly used as letters (A-Z), but mostly <b>x, y, and z</b>. For example, to find the area of a rectangle, you use
this formula: A = L x W. A is the area, L is the length, and W is the width. Here is another example: 2 + X = 5. We are trying to solve for X, but it is not alone on one side
of the equals sign. <i>Go <a href="#example">here</a> to learn about how to solve it.</i>
</p>
<div class="hspace"></div>
<h2 id="equation">How to Solve Equations</h2>
<p>Solving equations means to find the value of the variable. To do this, you must have the variable on one side of the equation with <b>nothing next to it</b> except
for the equals sign. <br><br> <span id="example">Here is the example from earlier: </span>2 + X = 5. See how 'X' is next to 2? We need to get 2 to the other side of the
equation to isolate 'X'. To do that, we need to use <b>INVERSE OPERATIONS!</b> They are basically the opposite of the number. The opposite of 2 is -2, so we subract two from
both sides. This leaves us with X = 5 - 2 -> X = 3! We solved for X!
</p>
<div class="hspace"></div>
<i><h3>Notes</h3>
<p>Thanks thanks especailly to my math teacher!</p></i>
<div class="hspace"></div>
<p><i>©rowannerd 2021</i></p>
<p>For more, go to our <a href="https://cascadecoder.github.io/homepage.html">homepage</a>!</p>
</body>
</html>