Ask Your Question
0

sage 5.3: no object "simplify_full" currently defined

asked 2012-09-28 05:22:25 +0200

Jakob S. gravatar image

updated 2012-09-28 05:35:08 +0200

I compiled sage 5.3 from source, everything was successful. So far I have not installed any of the optional packages. However, I cannot find any of the specific simplify-functions. (Error message: "no object 'simplify_full()' currently defined") The only thing I am able to use is simplify(). Am I missing something?

Edit to answer SLOtoSF profound question, "what have you tried":

  1. Autocompletion
  2. "sage> simplify?"
  3. reference documentation
  4. google search (e.g., "sage 5.3 simplify_full", "no object 'simplify_full()' currently defined" ...)
  5. asksage search "simplify_full" and "full_simplify"
  6. don't remember what else...
edit retag flag offensive close merge delete

Comments

What have you tried?

SLOtoSF gravatar imageSLOtoSF ( 2012-09-28 05:28:22 +0200 )edit

Some information on the system and hardware could be useful, though I doubt it. Can you also try starting Sage's Maxima, i.e. do `maxima_console()` in the command line. Also, you could try `sage -t devel/sage/sage/symbolic/expression.pyx` to test places where this is used and see if you get the same error in the doctest framework. Just some ideas for helping debug this.

kcrisman gravatar imagekcrisman ( 2012-09-28 11:31:57 +0200 )edit

1 Answer

Sort by ยป oldest newest most voted
2

answered 2012-09-29 02:30:15 +0200

benjaminfjones gravatar image

simplify_full() isn't a top-level function, it's a method attached to symbolic expressions. You can use it like this:

sage: f = (x-1)^2
sage: f.simplify_full()
x^2 - 2*x + 1
edit flag offensive delete link more

Comments

I guess I figured they were trying `f.simplify_full()` - points to you for not overthinking it!

kcrisman gravatar imagekcrisman ( 2012-09-29 22:00:00 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2012-09-28 05:22:25 +0200

Seen: 392 times

Last updated: Sep 29 '12