We have to find how can someone convert the temperature from degrees Farhenheit to degrees Celsius using the function. The temperature in degrees Celsius is equal to the temperature in degrees Farhenheit minus 32 times 5/9. Or C ( F ) = ( F - 32 ) * 5/9. For example: the temperature is F = 50°; C ( 50 ) = ( 50 - 32 ) * 5/9 = 18 * 5/ 9 = 10 °C. Answer: The function is: C ( F ) = ( F - 32 ) * 5/9.
Hope this helped.
X=30 degrees for each of the congregant angles
Answer:
x = -5
Step-by-step explanation:
Step 1: Write equation
-2x + 8 = 18
Step 2: Solve for <em>x</em>
- Subtract 8 on both sides: -2x = 10
- Divide both sides by -2: x = -5
Step 3: Check
<em>Plug in x to verify it's a solution.</em>
-2(-5) + 8 = 18
10 + 8 = 18
18 = 18
Answer:
a= 2x <u><em>(edit: i just forgot it should be a integer x.x, forgive my blondiness)</em></u>
Step-by-step explanation:
usually when doing equations like that, you can separate one of the parenthesis with 0
(in this case, we will use (2x-a) )
Then create a equation, which should look like:
2x-a=0
Then solve for a

Interesting question. Good to know for computer science.
Suppose you have a function like
an = 3x - 2 Try the first couple
a1 = 3(1) - 2
a1 = 3 - 2
a1 = 1
a2 = 3(2) - 2
a2 = 6 - 2
a2 = 4 So each term differs by 3
a2 - a1 = 3
an = a_(n - 1) + 3
a3 = a2 + 3
a3 = 4 + 3
a3 = 7
a4 = a3 + 3
a4 = 7 + 3
a4 = 10
a5 = a4+ 3
a5 = 10 + 3
a5 = 13
I'll do one more and then check it.
a6 = a5 + 3
a6 = 13 + 3
a6 = 16
a6 = 3x -2
a6 = 3*6 - 2
a6 = 18 - 2
a6 = 16 which checks.
So the general formula is
an = a_(n - 1) * k if you were multiplying or
an = a_(n - 1) + k if you were adding. The key thing is that you are working with the previous term.