HP Forums

Full Version: [Emulator] Laplace Transform Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: srKqOAI.png]

Im inputting laplace( te^(-3t) sin(5t))


Wolfram Gets [Image: ziVoC17.gif]

Emulator Spits out

[Image: okxlhXi.png]

[Image: kWXP54T.png]

What am I doing wrong?
the variable t and s are missing:
laplace(t*exp(-3t)*sin(3t),t,s)
With 1 argument the variable must be x: laplace(x*exp(-3x)*sin(3x))
I didn't try the emulator, but on the hardware Laplace Transform always results in a message "Unable to check if antiderivative ….", no matter which variables / parameters are used. Seems to be a new software bug.

After pressing ENTER again, the transformation result shows up.

I didn't see that before the new firmware update. However, before the update some transformations did not work at all.
(05-30-2014 06:41 AM)parisse Wrote: [ -> ]the variable t and s are missing:
laplace(t*exp(-3t)*sin(3t),t,s)
With 1 argument the variable must be x: laplace(x*exp(-3x)*sin(3x))

That makes sense.

ok so I put it in CAS mode I copied and pasted what you wrote(fixed the 3t for sin to 5t) and I get

[Image: oqdZ1Sy.png]

[Image: EePQWDI.png]

How come an error still pulls up?

Also is there anyway to change the answer form, such that it will display a simplified answer like Wolfram?
factor()

Note that isn't an error, just some additional information generated during the calculation. In this case it is attempting to do some additional validation and it can't.
Hi Tim,

even if this isn't an error but an additional information, it is rather meaningless to always show this message. It makes working with Laplace Transformation quite inconvenient, since it shows up for each transformation and even for the most simple ones like laplace(1) = 1/s where definitely no further validation is needed. Thus it is in no way helpful for the user and makes no sense for the user to get such a message in each case. And since the validation algorithm ALWAYS reports "Unable to check …." the whole algorithm makes no sense ...

There was no need for this before the update, why now?? Look at the HP50g, everything works fine. At least the user should be able to switch off such meaningless messaging.
I agree, +1.
I'll disable the integration warning when called from laplace. It's always difficult to make meaningfull warnings that do not have side-effects:-)
Great! Thanks for this.
Also is there anyway to change the answer form, such that it will display a simplified answer like Wolfram?

Apply the algebra "Factor" function to the answer.
Quote:Also is there anyway to change the answer form, such that it will display a simplified answer like Wolfram?

collect(ans) does the trick as well.
Reference URL's