.
Samson company has a budget of Php. 300,000 to be divided equally among it's various offices.
The developer office of the company receives twice the amount of money than the other offices.
Given x as the number of offices in the company, create a representation that shows the function f(x)
is the amount of money each of the non-developer office would receive?
~~~~~~~~~~~~~~~~~~~~~~~~~~~
As you read the problem, write this equation
f(x)*(x-1) + 2*f(x) = 300000.
Factor it
f(x)*(x-1+2) = 300000.
Simplify
f(x)*(x+1) = 300000.
From this equation, express f(x)
f(x) = .
It is the ANSWER to the problem's question.
Solved, with explanations.