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
Last revision Both sides next revision
lehrkraefte:blc:math:maxima-cheatsheet [2021/05/05 09:18]
Ivo Blöchliger [Using results of solve for further computations]
lehrkraefte:blc:math:maxima-cheatsheet [2023/05/04 19:59]
Ivo Blöchliger [Vector operations]
Line 20: Line 20:
 (%o11)        [x = ---------------------------------------------] (%o11)        [x = ---------------------------------------------]
                                       log(2)                                       log(2)
-</code> 
  
 +</code>
 +Und sonst halt mit ''find_root (expr, x, a, b)''
 ===== Output stuff like Maxima Input ===== ===== Output stuff like Maxima Input =====
 <code txt> <code txt>
Line 60: Line 61:
 norm(a):=sqrt(a.a); norm(a):=sqrt(a.a);
 area(a,b,c):=1/2*norm(cross(b-a,c-a)); area(a,b,c):=1/2*norm(cross(b-a,c-a));
 +vec2eq(eq):=makelist(rhs(eq)[i]=lhs(eq)[i], i, 1, length(rhs(eq)));
 +</code>
  
 +===== Binomial Distribution =====
 +<code maxima>
 +load("distrib");
 +pdf_binomial (25,500,0.03);   
 +cdf_binomial (25,500,0.03);
 </code> </code>
 +
  • lehrkraefte/blc/math/maxima-cheatsheet.txt
  • Last modified: 2024/05/03 09:06
  • by Ivo Blöchliger