lehrkraefte:blc:math:maxima-cheatsheet

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
lehrkraefte:blc:math:maxima-cheatsheet [2021/05/05 10:33]
Ivo Blöchliger [Solving exponential equations]
lehrkraefte:blc:math:maxima-cheatsheet [2024/05/03 09:06] (current)
Ivo Blöchliger [Using results of solve for further computations]
Line 53: Line 53:
 rhs(sol[2]); rhs(sol[2]);
 map(rhs, sol); map(rhs, sol);
 +</code>
 +===== Nummerically solve equations =====
 +[[https://maxima.sourceforge.io/docs/manual/maxima_116.html|Maxima doc]]
 +<code txt>
 +find_root(sin(2*x)=x,x,0.5,2);
 </code> </code>
  
Line 63: Line 68:
 vec2eq(eq):=makelist(rhs(eq)[i]=lhs(eq)[i], i, 1, length(rhs(eq))); vec2eq(eq):=makelist(rhs(eq)[i]=lhs(eq)[i], i, 1, length(rhs(eq)));
 </code> </code>
 +
 +===== Binomial Distribution =====
 +<code maxima>
 +load("distrib");
 +pdf_binomial (25,500,0.03);   
 +cdf_binomial (25,500,0.03);
 +</code>
 +
  • lehrkraefte/blc/math/maxima-cheatsheet.1620203585.txt.gz
  • Last modified: 2021/05/05 10:33
  • by Ivo Blöchliger