Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News Sign UpSign In
| Download

Basic usage of the Laplace transform

Views: 40
var('s t'); # Defining variables f = t; # The function we wish to calculate the Laplace transform g = f.laplace(t,s); # The Laplace transform of f g # Displaying g plot(f,t) # The graph of f h = max_symbolic(min_symbolic(g,1000),-1000);# Putting some limit "1000" to avoid the singularities of g plot(h,s) # The graph of the Laplace transform with limitations
(s, t) s^(-2)