We are given an exponential function:
f (x) = 2e^(3x)
The standard form of an exponential function is Aoe^(bx),
where Ao is the initial value of the function
b is the growth factor of the function
To graph the function, assign values of x then solve for the values of y corresponding the values of x.
We have been given the expression 2^5/8=2^2
8 can be rewritten as 2^3
Hence, the given expression becomes
2^5/2^3=2^2
After subtracting the exponents on left hand side of the equation we get:
2^2=2^2
we can do it by simplifying 8 to 2^3 to make both powers base two, and subtracting the exponents.
Answer:
Step-by-step explanation:
If we look at the picture,we can see that n<22
So the correct answer will be 22
<span>p ← 1
s ← 0
for i is in {1, 2, 3, 4}
do p ← p · 3
s ← s + p
n = 1 => first iteration
p = 1 * 3 = 3
s = 0 + 3 = 3
number of multiplications ---> 1
n = 2
p = 3 * 3 = 9
s = 3 + 9 = 12
number of multiplications ----> 1 + 1 = 2
n = 3
p = 9 * 3 = 27
s = 12 + 27 = 39
number o multiplications --> 2 + 1 = 3
n = 4
p = 27 * 7 = 81
s = 39 + 81 = 120
final number of multiplications -----> 3 + 1 = 4
final value of s
s = 120
Answer: number of mujltiplications: 4
final value of s: s = 120.
</span>