How to show a limit exist in maple?

271 Views Asked by At

Im trying to show $ \lim_{x \to 0}\frac{\sin(\sin(2x)^2}{x^2} = 4 $ in maple, but I am not getting it. This is what I have

enter image description here

2

There are 2 best solutions below

0
On BEST ANSWER

You need to modify the condition, it should be $|f - 4| > \epsilon $

1
On

It shouldn't be that hard. Maple has a "limit" command Try something like limit((sin(sin(2*x)))^2/x^2,x=0);

You miscounted your parentheses so I'm guessing what you meant and I don't guarantee I counted them right, but that's how you do it.