-
### Discussed in https://github.com/wxMaxima-developers/wxmaxima/discussions/1849
Originally posted by **zuckerruebe** December 3, 2023
Hi there
New to (wx)Maxima, but liking it a lot!
…
-
In wxmaxima v24.05.0, with maxima v5.47.0, the commands :
```
/*(%i1)*/ set_display('xml);
/*(%i2)*/ matrix([0]);
/*(%i3)*/ set_display('ascii);
/*(%i4)*/ display2d_unicode:false;
/*(%i5)*/ matr…
-
I'm trying to derive some finite-difference schemes and have run into some limitations with sympy's solver:
``` python
In [1]: from sympy import *
In [2]: e1, H0, d4, H1, e2, H3, e0, e3, H4, H2 = sy…
-
Imported from SourceForge on 2024-07-05 17:34:47
Created by **[sw2wolf](https://sourceforge.net/u/sw2wolf/)** on 2016-03-21 01:16:49
Original: https://sourceforge.net/p/maxima/bugs/3113
---
`~/maxim…
rtoy updated
4 months ago
-
### Prerrequisitos
(Marcar colocando una X entre los corchetes los ítems que ya hiciste, así: "[X]")
* [X ] Leí las reglas del foro (https://github.com/IIC2233/syllabus/issues/1)
* [X] Busqué…
-
Empirically, `maxima_calculus.eval()` is 5-7 times faster than `maxima.eval()`, cf. e.g.
```
sage: timeit("L = [(i/100.0, maxima_calculus.eval('jacobi_sn (%s/100.0,2.0)'%i)) for i in range(-300,300…
-
The maxima package SARAG ("some algorithms in real algebraic geometry")
would be a valuable addition to Sage.
Home:
- https://github.com/SomeARAG/sarag
CC: @dimpase @slel @yuan-zhou
Component…
-
```
var('s,x,y')
q = sqrt(2)
g = (x - y) * sin((x - y) / s)
g1 = integral(g({s:q}), y)
g2 = integral(g({s:q}), y, algorithm='sympy')
g3 = integral(g, y).subs({s:q})
```
Then g2 and g3 have the corr…
-
See this `ask.sagemath.org` [question](https://ask.sagemath.org/question/55766/a-simple-sum-causes-division-by-zero-exception/) for details.
```
sage: sum((1+r)^i, i, 1, n)
((r + 1)^(n + 1) - r - 1…
-
Sufficiently many calls to Maxima eventually causes that interface to throw an exception, some samples of which are given below. A minimal piece of code exhibiting this problem is
```
def prob()…