A*2 + b* = c*2
(9)*2 + (8)*2
81+64= 145
145=c*2
12.04=c
Answer:
a) 2 b) 1 c) 7/6
Function a(x) = 2x + 3 has the greatest rate of change
Step-by-step explanation:
a(x) = 2x + 3
2(-1) + 3 = 1 (-1,1)
2(2) + 3 = 7 (2,7)
= 6/3
=2
b(x) = x^2 - 1
(-1)^2 - 1 = 0 (-1, 0)
(2)^2 - 1 = 3 (2,3)
= 3/3
=1
c(x) = 2^x + 1
2^(-1) + 1 = 1.5 (-1, 1.5)
2^(2) + 1 = 5 (2,5)
= 3.5/3 or 7/6
=7/6
Answer:
Function 1
Step-by-step explanation:
That would be 100 * sin 30 = 100 * 0.5 = 50 pounds
Answer:
for(j = n; j > 0; j--)
System.out.print(\"*\");
Step-by-step explanation:
-A for loop is a repetition control structure.
-It allows the efficiency to write a loop that would otherwise be written a couple of times.
-The output is a single line comprising n asterisks,
-The number of asterisks printed will be equivalent to the n-value declared.