First time here? Check out the FAQ!

Ask Your Question
2

Find minimum value of polynomial

asked 11 years ago

ji-o gravatar image

updated 11 years ago

I have a univariate polynomial with integer coefficients over [0,1] and I would like to find a minimum value. Is there an easy way to do that in sage?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
2

answered 11 years ago

calc314 gravatar image

Try the following:

f(x)=(x-3)*(x+2)^2
f.find_minimum_on_interval(0,1)
Preview: (hide)
link

Comments

You have to remember that: f.find_minimum_on_interval(0,1) does NOT include the end points. This call on f(x) = (x-3)*(x+2)^2 will produce these results: (-17.99999991390072, 0.99999997130024143) While over the interval [0,1] the minimum is located at x=1 If you want to include the endpoints you would need to write something like this: min(f(0), f.find_minimum_on_interval(0,1)[0], f(1))

Pavel Yartsev gravatar imagePavel Yartsev ( 11 years ago )

I found this answer before finding

https://ask.sagemath.org/question/412...

The answer given at this link notes the updated method name "find_local_minimum/maximum"

See also: Sage Reference Manual on numerical optimization.

I also discovered this name change after following examples in Craig Finch's "Sage Beginner's Guide"

dyne2meter gravatar imagedyne2meter ( 4 years ago )

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 11 years ago

Seen: 1,516 times

Last updated: Jul 29 '13