Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132938 views
License: OTHER
1
f :: Floating a => a -> a
2
f x = sin x / x
3
4
g :: Floating a => a -> a
5
g x = x * (f (x*x))
6
7