I'm trying to find the derivative of this without using any tricks, just chain rule, but I'm getting lost
$$\sin^3\bigl(\cos\bigl(\sqrt{x^3 +2x^2}\bigr)\bigr)$$
well what confuses me is the power of 3 on the sin, my assumption would be to put $-3\cos^2$ and then multiply it by the inside brackets derivative, but is it like a chain rule within a chain rule?
Yes chains inside chains.
One way to think about it is to just keep pushing out one more nested function and differentiating, working it like so.
$\frac {d}{dx} \sin^3\sqrt{x^3 + 2x^2}\\ (3\sin^2\sqrt{x^3 + 2x^2})\frac {d}{dx}\sin\sqrt{x^3 + 2x^2}\\ (3\sin^2\sqrt{x^3 + 2x^2})(\cos\sqrt{x^3 + 2x^2})\frac {d}{dx}\sqrt{x^3 + 2x^2}\\ (3\sin^2\sqrt{x^3 + 2x^2})(\cos\sqrt{x^3 + 2x^2})(\frac {1}{2\sqrt{x^3+2x^2}})\frac {d}{dx}(x^3 + 2x^2)\\ (3\sin^2\sqrt{x^3 + 2x^2})(\cos\sqrt{x^3 + 2x^2})(\frac {1}{2\sqrt{x^3+2x^2}})(3x^2 + 4x)$
The other is to think of the composition of functions beforehand.
$u = x^3 + 2x^2\\ v = \sqrt u\\ w = \sin v\\ y = w^3$
And then apply the chain rule:
$\frac {dy}{dx} = \frac {dy}{dw}\frac {dw}{dv}\frac {dv}{du}\frac {du}{dx}\\ \frac {dy}{dx} = (3w^2)(\cos v)(\frac {1}{2\sqrt{u}})(3x^2 + 4x)\\ \frac {dy}{dx} = (3\sin^2 \sqrt{x^3+2x^2})(\cos \sqrt{x^3+2x^2})(\frac {1}{2\sqrt{x^3+2x^2}})(3x^2 + 4x)\\$
I would say the second approach is conceptually more difficult, but easier to keep organized.