Respuesta :
( I actually created a python program to do this, if you want it, I'll paste it at the bottom :L)
1- 60
2-80
3-200
4-40
5-21
(I caught the change in equations :L)
6-33
7-2
8-3
Hope this helps, if not, comment below please!!!
(The code:)
print "__________________________________"
#weird percent thingy
#num1 is first number, num2 is is the percent (no decimal)
phrase=("number is percent of finder")
print (phrase)
num1=(1)
num2=(1)
result=(num1*100/num2)
print(result)
Answer:
12 is 20% of 60
28 is 35% of 80
84 is 42% of 200
32 is 80% of 40
35% of 60 is 21
25% of 132 is 33
5% of 40 is 2
15% of 20 is 3
Step-by-step explanation:
For the first 4 situations, you need to multiply the first number by the reciprocal of the percentage as a fraction, which would be 100/(percent). Here's an example:
12 is 20% of x
x = 12*(100/20)
100/20 was used because that is the reciprocal of 20/100, which is 20% as a fraction out of 100.
For the last 4 situations, you just need to multiply the number by the percentage as a decimal. For example:
35% of 60 is x
x = 60*.35