rtoy / maxima

A Clone of Maxima's repo
Other
0 stars 0 forks source link

Abort when solving non-linear algebraic equation #1433

Open rtoy opened 2 weeks ago

rtoy commented 2 weeks ago

Imported from SourceForge on 2024-07-04 15:59:21 Created by hiromu on 2010-08-23 12:55:16 Original: https://sourceforge.net/p/maxima/bugs/2058


I do not understand how to allocate() or reallocate enougth spaces

rtoy commented 2 weeks ago

Imported from SourceForge on 2024-07-04 15:59:21 Created by hiromu on 2010-08-23 12:55:16 Original: https://sourceforge.net/p/maxima/bugs/2058/#57ac


I do not know how to allocate enougth space. Mathematica solve this equation.

Attachments:

rtoy commented 2 weeks ago

Imported from SourceForge on 2024-07-04 15:59:25 Created by crategus on 2010-10-02 19:29:31 Original: https://sourceforge.net/p/maxima/bugs/2058/#8da7


For the record:

This is the equation system Maxima fails to solve:

t:(1+sqrt(5))/2;

e0:(x-1)^2+(x*tan(%pi/5))^2-(1+H^2)^2=0; e1:(x-1)^2+z^2-((1+H^2)/3)=0; e2:(x/2-1)^2+(x*tan(%pi/5)/2)^2-((1+H^2)/(1+t^2))=0;

Dieter Kaiser