Missing close brace
hi!
Im getting "Missing close brace" when I try to prettyprint an expression on sage cloud.
the expression Im trying to prettyprint using show() is the result of using solve() on an equation system and saving it in the variable "a", I can see the contents of "a" but I can't prettyprint it.
thanks!
EDIT:
show (a[0]) works great for showing the first element, but I still cant get the whole thing to show.
here is the code that produces the error
- f=4(x^3-x/4)^3+4x-4*(x^3-x/4)
- solve (f==0,x)
- show (solve (f==0,x))
here is a pic
I also tried looking for show() in the documentation to see if I could find any warnings, considerations or limitations but I could not find anything :c
What happens if you do
show(a[0])
to show the first entry in the lista
? It also might help if you include the code used to produce the error so other people can try it out (not just a screen capture, but the actual code as text).show (a[0]) works great! here is the code that produces the error
f=4(x^3-x/4)^3+4x-4*(x^3-x/4) solve (f==0,x) show (solve (f==0,x))
thanks!
Your code works for me without error (including
show(solve(f==0, x))
), well, except I have to make some changes like replacing4x
with4*x
. What version of Sage are you using? Maybe you need to update, because maybe you're running into an old bug which has been fixed.