Questions tagged [wxmaxima]

WXMAXIMA QUESTIONS MUST BE PROGRAMMING RELATED. A GUI front-end Maxima built with wxWidgets

A GUI front-end Maxima built with wxWidgets. https://github.com/wxMaxima-developers/wxmaxima.

154 questions
1
vote
2 answers

Maxima: Round like in Excel

Is there a function which rounds numbers (even decimal numbers) like round() in Excel? Example Round 1,45 to one decimal: 1,5 Round 2,45 to one decimal: 2,5 There is a similar question but they use a different algorithm.
Sr. Schneider
  • 647
  • 10
  • 20
1
vote
0 answers

How to substitute the solution of the derivative in wxMaxima?

I am trying to substitute the value of the first derivative in the equation with wxMaxima. The substitution steps works fine with simple algebra but it does not work with derivative. It also substitutes the second derivative but I want to see first…
Aschoolar
  • 343
  • 3
  • 9
1
vote
1 answer

Solving Equations with (wx)Maxima: Control stack exhausted

Solving Equations with (wx)Maxima: Control stack exhausted I'm trying to solve equations with (wx)Maxima: formulate the equation, then let it insert the variables and solve the equation for the missing variable. But I'm having a hard time. Somehow…
Dux
  • 101
  • 4
1
vote
2 answers

Why is Maxima failing to give a solution?

I have a function in Maxima I am differentiating then attempting to find the value at which this is zero. When I use solve(), however, I am not given a solution. Why is this, and how can I work around it? (%i1) …
tsvallender
  • 2,615
  • 6
  • 32
  • 42
1
vote
2 answers

Taylor series expansion in maxima

How to expand taylor series/polynomials about Q=0 , and then extract coefficients as a list example : taylor ( (sin(q)), q, 0, 9); //taylor expansion for first 9 terms gives the next line (%o1)/T/ q\-q^3/6+q^5/120\-q^7/5040+q^9/362880+... then…
Mk47
  • 13
  • 1
  • 4
1
vote
0 answers

Limit in MAXIMA

When I execute the following MAXIMA code: kill(all); depends([trt, trz], [r, t, z])$ eq1 : cos(t)*diff(trz,z) + cos(t)*diff(trt,t) = 0$ limit(eq1, t, 0); I obtain: How can I remove that limit so that the answer is: I am using Maxima version:…
1
vote
1 answer

Symbolic Transpose on WxMaxima

How could I apply the transpose operator after it has returned the nominal expression? I'm working with some symbolic matrix equations, and I have to deal with the transpose, after that I need to substitute some matrices with real values, the…
daaan
  • 47
  • 5
1
vote
0 answers

Symbolically solving equation for a given variable in Maxima

I can solve an equation using Maxima by using the commands below. kill(all); A:A; phase:phase; solve(A*cos(2*pi*f*t+phase)=y,phase); And it gives me the correct answer. phase=acos(y/A)-2*f*pi*t But when I try and solve for just the top portion of…
Rick T
  • 3,349
  • 10
  • 54
  • 119
1
vote
1 answer

Why is wxMaxima not integrating the following input, and merely polishing the input as a result instead?

When I input: integrate((sqrt(x+sqrt(x+1))),x); It results in: integrate(sqrt(sqrt(x+1)+x),x) The result is displayed in a more organized manner. However, it does not give me the integral. Why?
1
vote
1 answer

wxMaxima assertion failed: "lang == wxLANGUAGE_DEFAULT"

Installed wxmaxima from the ubuntu 18.04 repository after a fresh install of ubuntu. However I get the following error: An assertion failed: ../src/common/intl.cpp(1071): assert "lang == wxLANGUAGE_DEFAULT" failed in IsAvailable(): No info for a…
ASarkar
  • 469
  • 5
  • 16
0
votes
0 answers

Series simplification in Maxima

I try sum(k, k, 1, n+1)-sum(k, k, 1, n),simpsum; Why does it give n+1? collect(sum(k, k, 1, n+1)-sum(k, k, 1, n)); neither?
moueza
  • 69
  • 1
  • 7
0
votes
0 answers

Is there a way to disable debugmode in wxMaxima?

I am not able to change debugmode to false in wxMaxima. I tried using the manual and documentation from wxMaxima but I still wasn't able. I even tried this code: %i1 debugmode(true); %o1 **true** %i2 debugmode(false); %o2 *No print*
0
votes
1 answer

Function of matrices in Maxima

I have two matrices Ac and Ep and a parameter k. I need to implement this matrix, which is a function of my prior matrices and k : ProbEnt(k)[i,j] := if (k < wmax) then binomial(Ac[i,j], k)*Ep[i,j]^k * (1-Ep[i,j])^(Ac[i,j]-k) else 0; For some…
Qubix
  • 4,161
  • 7
  • 36
  • 73
0
votes
1 answer

wxmaxima does not completely solve a derivative

I don't know why wxmaxima doesn't give me the complete result, leaving an expressed derivative and not solving it I don't understand what I could be doing wrong. If anyone can help me, thank you in advance. Note: Wxmaxima version 19.01.2x ; Maxima…
Time Step
  • 45
  • 4
0
votes
0 answers

How to place arrowheads on the axes in wxmaxima ??(NOTE: Not on mathematica)

Change the above code in wxmaxima I have tried so many commands but it didn'tget any relevant output it was showing an error always.