Y = 4 x + 3
<span>y = 4 x + 3/2
</span>no solution :) hope this helps
Answer:
-x2+25x-5
Step-by-step explanation:
7x+2x−3x2+9x+5x+8x2−6x2+2x−5
=−x2+25x−5
R = 13.1
so
<span>diameter = 13.1 x 2 = 26.2 km
</span>circumference = 2 pi r = 26.2 pi km
or
circumference = 26.2 x 3.14 = 82.27 km
Answer:
<em>Martin saved $75 on the television because of the sale</em>
Step-by-step explanation:
<u>Equations</u>
Let's call x=the original price of the television (before discount).
The television had been on sale for 25% off, this means the discount was:
25% of x =
= 0.25x
The sale price was the original price minus the discount:
x - 0.25x = 0.75x
This is what Martin paid, thus:
0.75x = 225
Dividing by 0.75:
x = 225 / 0.75
x = $300
The original price of the television was $300, and the discount was:
0.25*$300 = $75
Martin saved $75 on the television because of the sale
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.