12.
12x3 is already 36, more than 30..
First, make up some variables to represent the number of Girls and Boys in the choir.
B = number of boys
G = number of girls
You know that there are 4 times as many girls in the choir as boys. Therefore, the equation you can write is:
If you cross-multiply, then you get the simplified equation:
G = 4B
Intuitively this makes sense since if you multiplied the number of boys in the class by 4, that would be equal to the number of girls you have.
Now, we know that the total class size is 60. So girls plus boys equals 60:
G+B = 60
To solve the equation, replace the G in this equation with the replacement you found before, 4B.
G + B = 60 -->
4B + B = 60 -->
5B = 60 -->
B = 12
However, you are trying to find the number of girls, so plug the answer back into your equation.
G + B = 60 -->
G + 12 = 60 -->
G + 12 -12 = 60 - 12 -->
G = 48
The number of girls you have is 48.
Given
- f(n) values for n=1,2,3,4
- possible candidates for the function
Solution:
Method: Evaluate some of the values, for each function. A function with ANY value not matching the given f(n) values will be rejected.
N=1, f(n)=4
f(1)=4-3(1-1)=4
f(1)=4+3^(1+1)=4+3^2=4+9=13 ≠ 4 [rejected]
f(1)=4(3^(n-1))=4(3^0)=4
f(1)=3(4^(n-1))=3(4^0)=3*1=3 [rejected]
N=2, f(n)=12
f(1)=4-3(2-1)=4-3(1)=1 ≠ 12 [rejected]
[rejected]
f(1)=4(3^(2-1)=4*3^1=4*3=12
[rejected]
Will need to check one more to be sure
N=3, f(n)=3
[rejected]
[rejected]
f(3)=4(3^(n-1))=4(3^(3-1))=4(3^2)=4*9=36 [Good]
[rejected]
Solution: f(n)=4(3^(n-1))