Ask Your Question
1

minimize_constrained works for f(x,y)=x+y but not for f(x,y)=x

asked 2020-12-17 01:53:54 +0200

anonymous user

Anonymous

updated 2023-01-09 23:59:53 +0200

tmonteil gravatar image

Hi, need help to understand why minimize_constrained works for f(x, y) = x + y but does not work for f(x, y) = x.

Example:

var('x, y')
f(x, y) = x + y
c(x, y) = 1 - x^2 - y^2
minimize_constrained(f(x, y), [c(x, y)], [0, 0])
edit retag flag offensive close merge delete

Comments

This is a bug, indeed. Comes from using "f.variables()" in minimize_constrained.

FrédéricC gravatar imageFrédéricC ( 2020-12-17 11:13:31 +0200 )edit
FrédéricC gravatar imageFrédéricC ( 2020-12-17 12:00:58 +0200 )edit

2 Answers

Sort by » oldest newest most voted
1

answered 2020-12-17 12:38:35 +0200

Juanjo gravatar image

updated 2020-12-17 12:41:03 +0200

The code of minimize_constrained starts checking if the first argument is a symbolic expression. If this were the case, it gets the variables on which such an expression depends. Then the code generates a function whose argument is a vector, needed for any subsequent computation; each variable of the expression is replaced by a component of the vector. For example, if the expression is x^2+y, the variables are x and y. The code defines a function whose argument is a vector, say p, which yields p[0]^2+p[1].

When $f(x,y)=x$, the expression f(x,y) has only one variable, which is x, and so the function defined inside minimize_constrained does not depend on a vector with two components, as required, raising errors.

To use minimize_constrained, I would advise to directly define Python functions depending on vectors, either with def or lambda. For example, for $f(x,y)=x+y$, we can write

def f(x): return x[0] + x[1]
def c(x): return 1 - x[0]^2 - x[1]^2

or also

f = lambda x: x[0] + x[1]
c = lambda x: 1 - x[0]^2 - x[1]^2

In both cases, we get:

sage: minimize_constrained(f, c, [0,0])
(-0.7071774954004159, -0.7070360740443554)

Likewise, for $f(x,y)=x$, we have:

sage: f = lambda x: x[0]
sage: c = lambda x: 1 - x[0]^2 - x[1]^2
sage: minimize_constrained(f, c, [0,0])
(-1.0000000049989504, 9.999999987505248e-05)

which is the expected result.

If, for clarity, you prefer to explicitly define functions in terms of x and y, you can still do that:

sage: f = lambda x,y: x 
sage: c = lambda x,y: 1 - x^2 - y^2
sage: ff = lambda p: f(*p)
sage: cc = lambda p: c(*p)
sage: minimize_constrained(ff, cc, [0,0])
(-1.0000000049989504, 9.999999987505248e-05)
edit flag offensive delete link more

Comments

It works. Thank you! But if c is the input of interact, it does not work. I wonder why: var('x,y') @interact def _(f=x, c=1-x^2-y^2): cc = lambda p: c(*p) a=minimize_constrained(f, [cc], [0,0]) print(a)

gpires gravatar imagegpires ( 2020-12-19 15:30:43 +0200 )edit

Because in your code f and c are again symbolic expressions. In a Jupyter notebook, try the following code:

var('x,y') 
@interact.options(manual=True, manual_name="Minimize")
def _(f=input_box(default=x+y, label="$f$"), 
      c=input_box(default=1-x^2-y^2, label="$c$")):
    f1 = lambda x,y: float(f.subs(x=x,y=y))
    c1 = lambda x,y: float(c.subs(x=x,y=y))
    ff = lambda p: f1(*p)
    cc = lambda p: c1(*p) 
    a = minimize_constrained(ff, cc, [0,0])
    text = fr"""
    The minimum of $f(x,y)={f}$ <br> 
    subject to ${c}\geq0$ <br> is the point ${a}$
    """
    show(html(text))

Every time that you modify $f$ or $c$, the evaluation will take place once you press the Minimize button.

Juanjo gravatar imageJuanjo ( 2020-12-19 21:37:29 +0200 )edit

In a SageMath Cell, the code is slightly different. See this example.

Juanjo gravatar imageJuanjo ( 2020-12-19 21:39:43 +0200 )edit
0

answered 2020-12-17 06:21:57 +0200

Cyrille gravatar image

I confirm this doesn't work but you can substitute by

var('x, y, λ')
f(x, y) = x
c(x, y) = 1 - x^2 - y^2
Λ(x,y,λ) = x + λ*c(x,y)
dΛx = diff(Λ(x,y,x),x)
dΛy = diff(Λ(x,y,λ),y)
dΛλ = diff(Λ(x,y,λ),λ)
solve([dΛx==0,dΛy==0,dΛλ==0],(x, y, λ))
edit flag offensive delete link more

Comments

It works. Thank you!

gpires gravatar imagegpires ( 2020-12-19 15:09:17 +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

1 follower

Stats

Asked: 2020-12-17 01:53:54 +0200

Seen: 329 times

Last updated: Dec 17 '20