Rev 1978 | Rev 5798 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
32 | reyssat | 1 | !set x=<i>x</i> |
2 | |||
3 | <p> |
||
4 | $x is a real number, which can be replaced by an expression, to allow |
||
5 | composite functions. |
||
6 | <p> |
||
1978 | bpr | 7 | $table_header |
8 | $table_tr |
||
9 | $table_tr<th>Function<th>Description<th>How to type |
||
10 | $table_tr<td>$m_pi |
||
32 | reyssat | 11 | <td>constant known to all<td> |
1091 | bpr | 12 | <tt>pi</tt> or <tt>Pi</tt> or <tt>PI</tt> |
1978 | bpr | 13 | $table_tr<td><i>e</i><td>base of natural logarithmic<td> |
32 | reyssat | 14 | <tt>e</tt> or <tt>E</tt> |
1978 | bpr | 15 | |
16 | $table_tr<td>|$x|<td>absolute value of $x<td><tt>abs(x) |
||
17 | $table_tr<td>sign($x)<td>sign of $x: |
||
5766 | bpr | 18 | <br/> =-1 if $x<0<br/> =0 if $x=0<br/> =1 if $x>0 |
32 | reyssat | 19 | <td><tt>sign(x) |
1978 | bpr | 20 | $table_tr<td> |
32 | reyssat | 21 | !instex $$ \sqrt x $$ |
22 | <td>square root of $x |
||
1091 | bpr | 23 | <td><tt>sqrt(x)</tt> or <tt>x^(1/2)</tt> |
1978 | bpr | 24 | $table_tr<td>?<td>closest integer to $x<td><tt>rint(x)</tt> |
25 | $table_tr<td>?<td>largest integer <=$x<td><tt>floor(x)</tt> |
||
26 | $table_tr<td>?<td>smallest integer >=$x<td><tt>ceil(x)</tt> |
||
27 | $table_tr |
||
28 | $table_tr<td><i>e<sup>x</sup><td>exponential<td> |
||
1091 | bpr | 29 | <tt>exp(x)</tt> or <tt>e^x</tt> or <tt>E^x</tt> |
1978 | bpr | 30 | $table_tr<td>ln($x)<td>natural logarithmic<td><tt>log(x)</tt> or <tt>ln(x)</tt> |
31 | $table_tr |
||
32 | $table_tr<td>sin($x)<td>trigonometric sine<td><tt>sin(x) |
||
33 | $table_tr<td>cos($x)<td>trigonometric cosine<td><tt>cos(x) |
||
34 | $table_tr<td>tg($x)<td>trigonometric tangent<td><tt>tan(x)</tt> or <tt>tg(x)</tt> |
||
35 | $table_tr<td>ctg($x)<td>trigonometric cotangent<td><tt>cotan(x)</tt> or <tt>ctg(x)</tt> |
||
5766 | bpr | 36 | </tt> <br/> or <tt>cot(x) |
1978 | bpr | 37 | $table_tr<td>arcsin($x)<td>inverse trigonometric<td><tt>asin(x)</tt> or |
1091 | bpr | 38 | <tt>arcsin(x)</tt> |
1978 | bpr | 39 | $table_tr<td>arccos($x)<td>inverse trigonometric<td><tt>acos(x)</tt> or |
1091 | bpr | 40 | <tt>arccos(x)</tt> |
1978 | bpr | 41 | $table_tr<td>arctg($x)<td>inverse trigonometric<td><tt>atan(x)</tt> or |
5766 | bpr | 42 | <tt>arctan(x)</tt> <br/>or <tt>arctg(x)</tt> |
1978 | bpr | 43 | $table_tr |
44 | $table_tr<td>sh($x)<td>parabolic sine<td><tt>sh(x)</tt> or <tt>sinh(x)</tt> |
||
45 | $table_tr<td>ch($x)<td>parabolic cosine<td><tt>ch(x)</tt> or <tt>cosh(x)</tt> |
||
46 | $table_tr<td>th($x)<td>parabolic tangent<td><tt>th(x)</tt> or <tt>tanh(x)</tt> |
||
47 | $table_tr<td>Argsh($x)<td>inverse parabolic<td><tt>asinh(x)</tt> or <tt>argsh(x)</tt> |
||
5766 | bpr | 48 | <br/>or <tt>Argsh(x)</tt> |
1978 | bpr | 49 | $table_tr<td>Argch($x)<td>inverse parabolic<td><tt>acosh(x)</tt> or <tt>argch(x)</tt> |
5766 | bpr | 50 | <br/>or <tt>Argch(x)</tt> |
1978 | bpr | 51 | $table_tr<td>Argth($x)<td>inverse parabolic<td><tt>atanh(x)</tt> or <tt>argth(x)</tt> |
5766 | bpr | 52 | <br/>or <tt>Argth(x)</tt> |
1978 | bpr | 53 | $table_tr<td>max(x,y)<td>Bigger among x and y<td><tt>max(x,y)</tt> |
54 | $table_tr<td>min(x,y)<td>Smaller among x and y<td><tt>min(x,y) |
||
55 | $table_tr<td>gcd(x,y)<td>Greatest Common Divisor<td><tt>max(x,y) |
||
56 | $table_tr<td>lcm(x,y)<td>Least Commun Multiple<td><tt>min(x,y) |
||
32 | reyssat | 57 | </table></center> |
58 | !exit |
||
59 | |||
60 | !! Add the following: |
||
1091 | bpr | 61 | <ul> |
62 | <li>lg(x): log of base 10</LI> |
||
63 | <li>j0(x), j1(x), y0(x), y1(x): Bessel functions</LI> |
||
64 | </ul> |
||
32 | reyssat | 65 |