Inverse Composition Rules: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 63: Line 63:


}
}
             
 
f = function(x) { return Math.sin(x); }
g = function(x) { return Math.asin(x); }
 
plotf = brd.createElement('functiongraph',[f,-2,2],{dash:2});
plotg = brd.createElement('functiongraph',[g,-2,2],{dash:3});
 
</jsxgraph>
</jsxgraph>



Revision as of 13:33, 19 June 2009

f(x) sin(x) cos(x) tan(x) x2 sinh(x) exp(x)
 
g(x) arcsin(x) arccos(x) arctan(x) √(x) arcsinh(x) log(x)
 

The underlying JavaScript code