Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

asked 4 years ago

EconJohn gravatar image

Dealing with undefined exponents in SAGE

I've been playing with sage a bit and have been running into a number of walls in terms of getting analytical solutions so I decided to check if my beliefs are true about SAGE's difficulty with trying to solve the following algebraic problem in sage. xac=0,c0 on paper if we were to solve for this problem on paper we get x=c1a

What is simply done on paper seems to be an issue to run in sage:

x,a,c = var('x a c')
solve(x^a - c== 0)

This code does not work and wont give me the simple pen and paper solution to this problem. why is this the case?