If f ( x ) + f ( x x − 1 ) = 1 + x , find f ( 3 0 0 ) rounded to the nearest tenth.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice solution :) I tried the first bit but then I didn't repeat it
I make the number to be:
1 2 |
|
Itdoesmt even work
\(\begin{array} {} f(x) + f\left(\dfrac {x-1}x\right) = 1 + x & ...(1) & \small \color{blue} \text{Replace }x \text{ with }\dfrac {x-1}x. \\ f\left(\dfrac {x-1}x\right) + f\left(\dfrac 1{1-x}\right) = 2 - \dfrac 1x & ...(2) & \small \color{blue} \text{Replace }x \text{ with }\dfrac 1{1-x}. \\ f\left(\dfrac 1{1-x}\right) + f(x) = 1 + \dfrac 1{1-x} & ...(3) \end{array} \)
( 1 ) − ( 2 ) + ( 3 ) : 2 f ( x ) ⟹ f ( x ) f ( 3 0 0 ) = 1 + x − 2 + x 1 + 1 + 1 − x 1 = 2 1 ( x + x 1 + 1 − x 1 ) = 2 1 ( 3 0 0 + 3 0 0 1 − 2 9 9 1 ) ≈ 1 5 0 . 0
Alternative solution:
Substitute some values for x for reasons I couldn't possibly justify other than they seemed likely to produce a useful result. Incidentally I used the Python sympy symbolic algebra module.
1 2 3 4 5 6 7 |
|
Then solve for the unknown function value.
Problem Loading...
Note Loading...
Set Loading...
Substitute x = x x − 1 ⟹ f ( x x − 1 ) + f ( 1 − x 1 ) = x 2 x − 1 Call this A.
Now substitute x = x x − 1 into A to get f ( x ) + f ( x x − 1 ) = x − 1 x − 2 and call this B.
Add the original identity and B and subtract A to get
f ( x ) = 2 x ( x − 1 ) x 3 − x 2 + 1
Now calculating f ( 3 0 0 ) and rounding yields the answer of 1 5 0 . 5