4
$\begingroup$

The known conditions are:

f[2 x + 1 _] = x^2 - 2 x

How to find the analytical formula f [x] of this function?

$\endgroup$
2
  • 5
    $\begingroup$ RSolve[f[2 x + 1 ] == x^2 - 2 x, f[x], x] ? $\endgroup$ Commented Jun 4, 2023 at 12:48
  • 5
    $\begingroup$ Or by algebraic manipulation: Simplify /@ (f[2 x + 1] == x^2 - 2 x /. Solve[y == 2 x + 1, x][[1]]) /. {y -> x, Equal -> Rule} $\endgroup$
    – Bob Hanlon
    Commented Jun 4, 2023 at 14:27

1 Answer 1

4
$\begingroup$

Obtain answers based on Mariusz Iwaniuk prompts from netizens

RSolve[{f[2 x + 1] == x^2 - 2 x}, f[x], x] // Simplify // Expand
$\endgroup$

Not the answer you're looking for? Browse other questions tagged or ask your own question.