Answer:
9 steps
Step-by-step explanation:
Let
be the number of jumps
and
be the number of steps
So the first case

Second case

Both cover equal distances so




So, one jumps is 9 steps.
Answer:15
Step-by-step explanation: Debora has to take the numbers 3 and 5 and multiply. 3x5= 15
Step 1
distribute the -3
-3(y-5)=24
-3y+15=24
step 2
subtract 15 from both sides
-3y =9
Step 3
divide -3 on both sides
y=-3
It's C because you need to find how many points each student earned per grade (freshman & sophomore). Then you multiply it by 30 to find out how many points each student scored in the whole class.
Hope this helps!
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