Rev 4654 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3263 | bpr | 1 | :Wiskundige functies |
4452 | schaersvoo | 2 | :Functie,Voorbeeld,Effect |
3460 | bpr | 3 | :evalue( ) |
3263 | bpr | 4 | evalue(x^2+sin(y),x=3,y=4) |
5 | evaluatie van functie x^2+sin(y), voor x=3, y=4 |
||
3460 | bpr | 6 | :solve( ) |
3263 | bpr | 7 | solve(x^3-3*x+1,x=0..1) |
8 | de numerieke wortel van x^3-3x+1 tussen 0 en 1 |
||
3460 | bpr | 9 | :simplify( ) |
3263 | bpr | 10 | simplify(x^5*y^3*x^2/y) |
11 | vereenvoudig algebraisch : x<sup>7</sup>y<sup>2</sup> |
||
3460 | bpr | 12 | :diff( ) |
3263 | bpr | 13 | diff(sin(x)+cos(y),x) |
14 | de afgeleide van sin(x)+cos(y) naar x |
||
3460 | bpr | 15 | :int( , ) |
3263 | bpr | 16 | int(x^2+3*x+1,x) |
17 | de primitieve van x^2+3*x+1, geen contante vermeld. |
||
3460 | bpr | 18 | :int( , = .. ) |
3263 | bpr | 19 | int(t^2+3*t+1,t=0..1) |
20 | de numerieke integratie van x^2+3*x+1, van 0 tot 1 |
||
3460 | bpr | 21 | :det( ) |
3263 | bpr | 22 | det(\mat) |
4452 | schaersvoo | 23 | determinant van matrix \mat |
3460 | bpr | 24 | :abs( ) |
25 | \real{a=abs(-32)} |
||
17516 | bpr | 26 | absolute waarde (alternatief : fabs( )) |
3460 | bpr | 27 | :sqrt( ) |
3263 | bpr | 28 | \real{a=sqrt(32)} |
4452 | schaersvoo | 29 | vierkantswortel |
3460 | bpr | 30 | :binomial( , ) |
3263 | bpr | 31 | \integer{a=binomial(9,3)} |
4452 | schaersvoo | 32 | de binomiaalcoëfficiënt (indien groter dan 10^7 gebruik: \text{a=pari(binomial(50,10))} |
3460 | bpr | 33 | :ceil( ) |
3263 | bpr | 34 | \real{a=ceil(3.4)} |
4452 | schaersvoo | 35 | het kleinste gehele getal groter of gelijk aan a |
3460 | bpr | 36 | :floor( ) |
3263 | bpr | 37 | \real{a=floor(3.4)} |
17516 | bpr | 38 | het grootste gehele getal kleiner of gelijk aan a |
3460 | bpr | 39 | :rint( ) |
3263 | bpr | 40 | \real{a=rint(3.4)} |
4452 | schaersvoo | 41 | afgeronden ; dichtst bijzijnde integer (alternatief : round( )) |
3460 | bpr | 42 | :e |
3263 | bpr | 43 | \real{a=e^2} |
17516 | bpr | 44 | de constante $m_e ; (equivalent : E) |
3460 | bpr | 45 | :erf( ) |
46 | \real{a=erf(3.4)} |
||
4452 | schaersvoo | 47 | de Erf functie |
3460 | bpr | 48 | :erfc( ) |
49 | \real{a=erfc(3.4)} |
||
4452 | schaersvoo | 50 | de Erfc functie |
3460 | bpr | 51 | :Euler |
52 | \real{a=Euler} |
||
17516 | bpr | 53 | de Euler constante (alternatief : EULER euler) |
3460 | bpr | 54 | :exp( ) |
55 | \real{a=exp(4)} |
||
4452 | schaersvoo | 56 | exponentieel |
3460 | bpr | 57 | :factorial( ) |
3263 | bpr | 58 | \integer{a=factorial(4)} |
4452 | schaersvoo | 59 | faculteit |
3263 | bpr | 60 | :Inf |
61 | \real{a=Inf + 3} |
||
62 | l'infini |
||
3460 | bpr | 63 | :gcd( , ) |
3263 | bpr | 64 | \integer{a=gcd(4,6)} |
4452 | schaersvoo | 65 | grootste gemene deler |
3460 | bpr | 66 | :lcm( , ) |
3263 | bpr | 67 | \integer{a=lcm(4,6)} |
4452 | schaersvoo | 68 | kleinste gemene veelvoud |
4654 | bpr | 69 | :% |
70 | \integer{a=5%2} |
||
71 | remainder of long division |
||
3460 | bpr | 72 | :max( , ) |
3263 | bpr | 73 | \real{a=max(4,6)} |
4452 | schaersvoo | 74 | grootste getal van twee getallen |
3460 | bpr | 75 | :min( , ) |
3263 | bpr | 76 | \real{a=gcd(4,6)} |
4452 | schaersvoo | 77 | kleinste getal van twee getallen |
17516 | bpr | 78 | :lg( ) |
3263 | bpr | 79 | \real{a=log10(10^4)} |
4452 | schaersvoo | 80 | logaritme met grondtal 10 (alternatief : log10) |
3460 | bpr | 81 | :lgamma( ) |
3263 | bpr | 82 | \real{a=lgamma(e^(24))} |
4452 | schaersvoo | 83 | logaritme vam de Gamma functie |
3460 | bpr | 84 | :ln( ) |
3263 | bpr | 85 | \real{a=ln(e^4)} |
4452 | schaersvoo | 86 | natuurlijke logaritme (alternatief : log) |
3460 | bpr | 87 | :log2( ) |
3263 | bpr | 88 | \real{a=log2(2^4)} |
4452 | schaersvoo | 89 | logaritme met grondtal 10 |
3460 | bpr | 90 | :pow( ) |
3263 | bpr | 91 | \real{a=pow(3,0.6)} |
4452 | schaersvoo | 92 | machteverheffen, gelijkwaardig met 3^0.6 |
17516 | bpr | 93 | :sgn( ) |
3263 | bpr | 94 | \integer{a=sign(-4)} |
4452 | schaersvoo | 95 | teken (gelijkwaarding : sign) |
3460 | bpr | 96 | :PI |
3263 | bpr | 97 | \real{a=sin(Pi)} |
4452 | schaersvoo | 98 | $m_pi, (gelijkwaardig : Pi, pi) |
17516 | bpr | 99 | :sin |
3460 | bpr | 100 | sin(3) |
4452 | schaersvoo | 101 | sinus (andere functies : tg tan sec (1/sin) cot cotan cotan ctg csc (1/cos)) |
3460 | bpr | 102 | :acos |
103 | acos(0.5) |
||
4452 | schaersvoo | 104 | acosinus (andere functies : acos arccos acos arcsin asin arctan atan arctg atan) |
3460 | bpr | 105 | :sh |
106 | sh(4) |
||
4452 | schaersvoo | 107 | hyperbolische functie (andere foncties : sh sinh tanh tanh th ch cosh coth cotanh) |
3460 | bpr | 108 | :Argch |
109 | Argch(4) |
||
4452 | schaersvoo | 110 | reciproce hyperbolisch functie (andere functies : Argch acosh argch Argsh asinh argsh Argth atanh argth) |