-
-
Notifications
You must be signed in to change notification settings - Fork 688
Open
Description
We search the critical points of the function x|-> (x2 + y2)^x
This function has four critical points : ±(0,1) and ±(1/e,0)
However the function solve can not find any of this.
More, solve returns (0,0) which is not a critical point since f is not differentiable at (0,0) !
sage: var('x y')
sage: f(x,y) = (x^2 + y^2)^x
sage: solve([diff(f(x,y), x), diff(f(x,y), y)], x, y)
[[x == 0, y == 0]]
Upstream: Reported upstream. No feedback yet.
CC: @kcrisman @robert-marik @jasongrout
Component: calculus
Keywords: solve
Stopgaps: #12730
Issue created by migration from https://trac.sagemath.org/ticket/8862