Skip to content

solve misses some solutions in a certain nonlinear system #8862

@sagetrac-casamayou

Description

@sagetrac-casamayou

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

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions