If you use BEDMAS you should end up with an answer of 1004.
Answer:
63m³
Step-by-step explanation:
volume of a cylinder = πr²h
r = 2m, h = 5m
= 22/7 × 2² × 5
= 62.86m³
approx 63m³
Answer:
Step-by-step explanation:
(3-(-6)) / (6-3) = 9/3 = 3
Answer:
648
Step-by-step explanation:
Running this in Python, with the code as follows,
import math
cur_numbers = [0] * 3
num = 0
for i in range(100, 1000):
cur_numbers[2] = i % 10
i = math.floor(i/10)
cur_numbers[1] = i % 10
i = math.floor(i/10)
cur_numbers[0] = i % 10
if(len(set(cur_numbers)) == 3):
num += 1
print(cur_numbers)
print(num), we get 648 as our answer.
Another way to solve this is as follows:
There are 9 possibilities for the hundreds digit (1-9). Then, there are 10 possibilities for the tens digit, but we subtract 1 because it can't be the 1 same digit as the hundreds digit. For the ones digit, there are 10 possibilities, but we subtract 1 because it can't be the same as the hundreds digit and another 1 because it can't be the same as the tens digit. Multiplying these out, we have
9 possibilities for the hundreds digit x 9 possibilities for the tens digit x 8 possibilities for the ones digit = 648
The attached image shows the image of A"B"C" after the transformation
<h3>What is the transformation of the triangle about?</h3>
The transformation rule states:
A"B"C" = Ro90° (T(-4,3)(ABC))
This implies that one need to rotate the triangle in a 90⁰ clockwise direction, and then one need to translate the triangle.
Using the image shown, the coordinates of ABC are;
A = (-1, 2)
B = (1, 4)
C = (3, -1)
The 90⁰ rule clockwise rotation will be:
(x,y) -- (y,-x)
So, when translated, it will be:
A' = (2, 1)
B' = (4, -1)
C' = (-1, -3)
Then the translation of the triangle using T(-4,3):
(x, y) - (x - 4, y + 3)
So, there is:
A'' = (-2, 4)
B'' = (0, 2)
C'' = (-5, 0)
Learn more about transformation from:
brainly.com/question/28108536
#SPJ1