27.5k views
0 votes
12 is 20% of what number? 28 is 35% of what number? 84 is 42% of what number? 32 is 80% of what number? 35% of 60 is what number? 25% of 132 is what number? 5% of 40 is what number? 15% of 20 is what number? C​

2 Answers

6 votes

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

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

User Praveesh P
by
5.5k points
4 votes

( 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)

User Evadeflow
by
4.9k points