Rev 11520 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
15107 | mquerol | 1 | :Fonctions mathématiques |
2 | :Fonction,Exemple,Signification |
||
5477 | bpr | 3 | |
4 | :evalue( ) |
||
5 | evalue(x^2+sin(y),x=3,y=4) |
||
6 | évaluation de la fonction x^2+sin(y) en x=3, y=4 |
||
7 | |||
8 | :solve( ) |
||
9 | solve(x^3-3*x+1,x=0..1) |
||
10 | la racine simple de x^3-3x+1 entre 0 et 1 |
||
11 | |||
12 | :simplify( ) |
||
13 | simplify(x^5*y^3*x^2/y) |
||
14 | expression simplifiée : x<sup>7</sup>y<sup>2</sup> |
||
15 | |||
16 | :diff( ) |
||
17 | diff(sin(x)+cos(y),x) |
||
18 | la dérivée de sin(x)+cos(y) par rapport à x |
||
19 | |||
20 | :int( , ) |
||
21 | int(x^2+3*x+1,x) |
||
22 | primitive de x^2+3*x+1, le terme constant étant indéterminé |
||
23 | |||
24 | :int( , = .. ) |
||
25 | int(t^2+3*t+1,t=0..1) |
||
26 | l'intégrale numérique de x^2+3*x+1, entre 0 et 1 |
||
27 | |||
28 | :det( ) |
||
29 | det(\mat) |
||
30 | le déterminant de la matrice \mat |
||
31 | |||
32 | :abs( ) |
||
33 | abs(-3.4) |
||
34 | valeur absolue (equivalent : fabs( )) |
||
35 | :sqrt( ) |
||
36 | \real{a=sqrt(32)} |
||
37 | racine carrée |
||
38 | :binomial( , ) |
||
39 | \integer{a=binomial(9,3)} |
||
40 | le coefficient binomial (pour des coefficients inférieurs à 10^7 sinon utiliser la fonction de pari \text{a=pari(binomial(50,10))} |
||
41 | :ceil( ) |
||
42 | \real{a=ceil(3.4)} |
||
43 | le plus petit entier supérieur |
||
44 | :floor( ) |
||
45 | \real{a=floor(3.4)} |
||
46 | le plus grand entier inférieur |
||
47 | :rint( ) |
||
48 | \real{a=rint(3.4)} |
||
49 | l'entier le plus proche (equivalent : round( )) |
||
50 | :e |
||
51 | \real{a=e^2} |
||
15107 | mquerol | 52 | constante mathématique $m_e ; (equivalent : E) |
5477 | bpr | 53 | :erf( ) |
54 | \real{a=erf(3.4)} |
||
55 | Fonction erf |
||
56 | :erfc( ) |
||
57 | \real{a=erfc(3.4)} |
||
58 | Fonction erfc |
||
59 | :Euler |
||
60 | \real{a=Euler} |
||
15107 | mquerol | 61 | constante d'Euler : EULER euler |
5477 | bpr | 62 | :exp( ) |
63 | \real{a=exp(4)} |
||
64 | exponentielle |
||
65 | :factorial( ) |
||
66 | \integer{a=factorial(4)} |
||
67 | factorielle |
||
68 | :Inf |
||
69 | \real{a=Inf + 3} |
||
70 | l'infini |
||
71 | :gcd( , ) |
||
72 | \integer{a=gcd(4,6)} |
||
73 | pgcd de deux entiers |
||
74 | :lcm( , ) |
||
75 | \integer{a=lcm(4,6)} |
||
76 | ppcm de deux entiers |
||
77 | :% |
||
78 | \integer{a=5%2} |
||
79 | reste de la division euclidienne |
||
80 | :max( , ) |
||
81 | \real{a=max(4,6)} |
||
82 | maximum de deux nombres |
||
83 | :min( , ) |
||
84 | \real{a=gcd(4,6)} |
||
85 | minimum de deux nombres |
||
15107 | mquerol | 86 | :lg( ) |
5477 | bpr | 87 | \real{a=log10(10^4)} |
88 | log en base 10 (equivalent : log10) |
||
89 | :lgamma( ) |
||
90 | \real{a=lgamma(e^(24))} |
||
91 | log de la fonction Gamma |
||
92 | :ln( ) |
||
93 | \real{a=ln(e^4)} |
||
94 | log népérien (equivalent : log) |
||
95 | :log2( ) |
||
96 | \real{a=log2(2^4)} |
||
97 | log en base 2 |
||
98 | :pow( ) |
||
99 | \real{a=pow(3,0.6)} |
||
100 | puissance, équivalent à 3^0.6 |
||
15107 | mquerol | 101 | :sgn( ) |
5477 | bpr | 102 | \integer{a=sign(-4)} |
103 | signe de la valeur (equivalent : sign) |
||
104 | :PI |
||
105 | \real{a=sin(Pi)} |
||
106 | constante mathématique $m_pi, (equivalent : Pi, pi) |
||
15107 | mquerol | 107 | :sin |
5477 | bpr | 108 | sin(3) |
109 | fonctions trigonométriques (autres fonctions : tg tan sec (1/sin) cot cotan cotan ctg csc (1/cos)) |
||
110 | :acos |
||
111 | acos(0.5) |
||
112 | fonctions trigonométriques réciproques (autres fonctions : acos arccos acos arcsin asin arctan atan arctg atan) |
||
113 | :sh |
||
114 | sh(4) |
||
115 | fonctions hyperboliques (autres fonctions : sh sinh tanh tanh th ch cosh coth cotanh) |
||
116 | |||
117 | :Argch |
||
118 | Argch(4) |
||
11520 | mquerol | 119 | fonctions hyperboliques réciproques (autres fonctions : Argch acosh argch Argsh asinh argsh Argth atanh argth) |