Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
14
Task/Infinity/Maxima/infinity.maxima
Normal file
14
Task/Infinity/Maxima/infinity.maxima
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/* Maxima has inf (positive infinity) and minf (negative infinity) */
|
||||
|
||||
declare(x, real)$
|
||||
|
||||
is(x < inf);
|
||||
/* true */
|
||||
|
||||
is(x > minf);
|
||||
/* true */
|
||||
|
||||
/* However, it is an error to try to divide by zero, even with floating-point numbers */
|
||||
1.0/0.0;
|
||||
/* expt: undefined: 0 to a negative exponent.
|
||||
-- an error. To debug this try: debugmode(true); */
|
||||
Loading…
Add table
Add a link
Reference in a new issue