Substitution and evaluating expressions

Part 3

In life, some things that look very similar are very different, and some things that look very different are very similar. In math, sometimes two equations that look very different equal the same thing. The reason for this is that equations are written in different forms and sometimes not reduced to the point that makes the equation more manageable. For example, the simplest way to write equations is y = Mx+B. You will later learn that this formula is called slop-intercept form. However, there are many other ways to write an equation, and sometimes, we just need to reduce the equation because someone else was too lazy to do so.

We call this simplifying the equation. Our goal is to have as few numbers as possible and math stuff as possible when we simplify. When we simplify, we need to follow 3 main rules to make sure everything goes smoothly.

Rule 1: Like terms go together. Xs go with xs and regular numbers go with regular numbers. 3x + 2x = 5x, 3 + 2 = 5, but 3x + 2 simply equals 3x+2. Addition and subtraction may be easy, but multiplication can sometimes be confusing. Later you will learn about multiplying variable by variable, but for now, you need to understand how to multiply regular numbers by a variable. The weird thing is that you cannot add a variable and a regular number, but you can multiply a variable and a regular number. The reason for this seemingly odd rule is how coefficients work in math. 3x can be written as (3)(x), so when we multiply 3x by 6, we can multiply the coefficient of 3 by 6 to get 18x. While we can multiply the coefficient, we cannot add anything to the coefficient because it is in the parenthesis.

Rule 2: Distribute across all of the parenthesis if included. If you have a number outside the parenthesis, you need to make sure you multiply that number across all of the numbers in the parenthesis. In equation 5(2x-2), make you multiply everything to get 20x-10 as the final answer.

Rule 3: Use of order of operations. When you are making a meal, you have to follow a certain order or else the meal will not turn out right. Math is the same way. We have to follow an order of operations, which can be helpful to remember by "PEMDAS".

Click on the buttons below to learn more about PEMDAS.

P - Parenthesis

Math written in parenthesis is always done first. For example, in 5(3+2), we would solve 3+2 = 5, before multiplying that number by 5. Parenthesis can also include brackets or curly brackets. All PEMDAS rules also stay the same inside of the parenthesis.

E - Exponents

Exponents should always be done second. For example, in 5^2 * 3, we should solve 5^2 first.

M - Multiplication

Multiplication always comes third. However, it should be noted that it is on the same level as division. So, whichever comes first in the problem, multiplication or division, is what should be done as the third step.

D - Division

Division also always comes third. However, it is on the same level as multiplication. Divisions should be completed on the third step in whatever order it or multiplication occurs.

A - Addition

Addition comes last. Addition is on the same level as subtraction. In question 3+6(5), the answer is 33, since you multiply 6 and 5 first, then finally add.

S - Subtraction

Addition comes last. Addition is on the same level as subtraction. In question 3+6(5), the answer is 33, since you multiply 6 and 5 first, then finally add.

Questions:

What is the coefficient of x in this equation: 6(2x+4)-5x



def sub(*args,**kwargs): result_place = Element("output2") if int(Element("num").value) == 7: result_place.write("Correct!") else: result_place.write("Answer: 7 - Solution: First you multiply 6 by 2x to get 12x, and then 6 by 4 to 24. Then you subtract 12x-5x, leaving us with the equation 7x+24.") Arrow facing the next lesson

Next lesson

Arrow facing the last lesson

Last part