The Greatest Common Factor (GCF) of 25, 5, 11 and 23, 52, 7 is 1, same with 22,3 and 23, 5 and 13, 193, 232.
Answer:
Step-by-step explanation:
a)3*4*2*b = 24b
Multiply the numerals and then the variables.When multiply variables, add the exponents and only same variables can be multiplied
b) c⁵ *c = c⁵⁺¹ = c⁶
c) 2y⁴ *5y³ = 2*5 * y⁴⁺³ = 10y⁷
The domain is all of the possible x values, and there are none less than -3 in this case, so the answer is B, which shows that x must be greater than or equal to -3.
Answer:
<em>after 4seconds</em>
Step-by-step explanation:
Given the height, h , in feet, of the football above the ground after t seconds expressed by h ( t ) = − 8 t^2 + 32 t, the height of the ball on the ground is 0feet.
Substitute h(t) = 0 into the expression and calculate t;
h ( t ) = − 8 t^2 + 32 t
0 = − 8 t^2 + 32 t
8t² = 32t
8t = 32
Divide both sides by 8
8t/8 = 32/8
<em>t = 4s</em>
<em>Hence the football hits the ground after 4seconds</em>
Answer:
x=11
Step-by-step explanation:
The switch case works like an if or if-else, where each of the cases are conditionals. Here we have 7 cases and we know that our variable begins with x=5.
First, it enters to case 5 because of x=5, so x+=3, this means we add 3 to the actual value of the variable ⇒ x=8.
At this point, if there's not break the program continues to the next case, executing the statements until a break or the end on the switch is reached.
In this order, the x = 8 and next we add 1 (case 6) ⇒ x=9. We add 2 (case 7) x+=2 ⇒ x=10. Then we rest 1 (case 8) ⇒ x=9 and then we add 1 again as in case 9 ⇒ x=11.