24. 244 cm
25. 65 mm
26. 37/80 or 0.4625
Answer:
-3
Step-by-step explanation:
First take (-3+2) and simplify that which will turn into (-1). Then take (-5+7) which will turn into (2). Then plug that back into the equation and you get (-1)-(2). And you get -3.
Answer:
j
Step-by-step explanation:
Substitute the given values into x² + x + 1 and check if result is prime
x = - 4
(- 4)² - 4 + 1 = 16 - 4 + 1 = 13 ← prime
(- 2)² - 2 + 1 = 4 - 2 + 1 = 3 ← prime
(- 3)² - 3 + 1 = 9 - 3 + 1 = 7 ← prime
4² + 4 + 1 = 16 + 4 + 1 = 21 ← not prime
x = 4 serves as a counterexample to disprove this conclusion
Solve for x. Isolate the x. Note the equal sign. What you do to one side, you do to the other. Do the opposite of PEMDAS.
First, multiply 3 to both sides
6(3) = ((x + 2)/3)(3)
18 = x + 2
Finally, isolate the x. Subtract 2 from both sides
18 (-2) = x + 2 (-2)
x = 18 - 2
x = 16
16 is your answer for x
hope this helps
Franck's answer is better (using ~), but I just wanted to point out that the conditional in yours is slightly redundant. It's easy to forget that, since you already have a boolean value, you don't need to perform a comparison in your conditional. So you could have just done this...
<span>if x
x = false;
else
x = true;
<span>end</span></span>