evalmathnotation.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. require_once "../inc/global.inc.php";
  4. echo "<pre>".
  5. get_lang('Summation: +')."\n".
  6. get_lang('Substraction: -')."\n".
  7. get_lang('Multiplication: *')."\n".
  8. get_lang('Division: /')."\n".
  9. get_lang('Exponentiation: ^')."\n".
  10. get_lang('Modulo: %')."\n".
  11. "\n".
  12. get_lang('Square root: sqrt(x)')."\n".
  13. get_lang('Absolute value: abs(x)')."\n".
  14. get_lang('Natural logarithm: ln(x)')."\n".
  15. get_lang('Logarithm: log(x)')."\n".
  16. get_lang('E number: e')."\n".
  17. get_lang('Pi number: pi')."\n".
  18. "\n".
  19. get_lang('Sine: sin(x)')."\n".
  20. get_lang('HyperbolicSine: sin(x)h')."\n".
  21. get_lang('Arcsine: arcsin(x)')."\n".
  22. get_lang('HyperbolicArcsine: arcsin(x)h')."\n".
  23. "\n".
  24. get_lang('Cosine: cos(x)')."\n".
  25. get_lang('HyperbolicCosine: cos(x)h')."\n".
  26. get_lang('Arccosine: arccos(x)')."\n".
  27. get_lang('HyperbolicArccosine: arccos(x)h')."\n".
  28. "\n".
  29. get_lang('Tangent: tan(x)')."\n".
  30. get_lang('HyperbolicTangent: tan(x)h')."\n".
  31. get_lang('Arctangent: arctan(x)')."\n".
  32. get_lang('HyperbolicArctangent: arctan(x)h')."\n".
  33. "\n".
  34. get_lang('Cotangent: cot(x)')."\n".
  35. get_lang('HyperbolicCotangent: cot(x)h')."\n".
  36. get_lang('Arccotangent: arccot(x)')."\n".
  37. get_lang('HyperbolicArccotangent: arccot(x)h')."\n".
  38. "\n".
  39. get_lang('Secant: sec(x)')."\n".
  40. get_lang('HyperbolicSecant: sec(x)h')."\n".
  41. get_lang('Arcsecant: arcsec(x)')."\n".
  42. get_lang('HyperbolicArcsecant: arcsec(x)h')."\n".
  43. "\n".
  44. get_lang('Cosecant: csc(x)')."\n".
  45. get_lang('HyperbolicCosecant: csc(x)h')."\n".
  46. get_lang('Arccosecant: arccsc(x)')."\n".
  47. get_lang('HyperbolicArccosecant: arccsc(x)h')."\n".
  48. "\n".
  49. "</pre>";