Maple: how to solving composite function

1.9k Views Asked by At

Here is just an simple example that I want to use Maple to solve: $$h(x)=f(g(x))$$ $$g(x)=2x+1$$ $$h(x)=4x^2+4x+7$$

Find polynomial of $f(x)$

Thanks :)

2

There are 2 best solutions below

4
On BEST ANSWER

enter image description here

The desire function is the last output as you see. Thanks.

1
On

For fun,

> h:=x->4*x^2+4*x+7:
> g:=x->2*x+1:

> rsolve( f(g(x)) = h(x), f(x) );

                                 2
                                x  + 6