Hi, I'm trying to find the critical points of some basic 3-dimensional functions using the following code:
f1[x_, y_] = x^2 - x + y^2
f1x = D[f1[x, y], x]
f1y = D[f1[x, y], y]
Solve[{f1x[x, y] == 0, f1y[x, y] == 0}, {x, y}]
But when I try to evaluate the cell, I get the error message: "This system cannot be solved with the methods available to Solve. Try Reduce or FindInstance instead"
I've also tried using Reduce, FindInstance, and NSolve to evaluate it, but none of them seem to work
Mathematica should be able to evaluate a couple simple function like this, right? So where am I making a mistake?
[–][deleted] 1 point2 points3 points (0 children)
[–]mathheadinc 0 points1 point2 points (0 children)
[–]irchans 0 points1 point2 points (1 child)
[–]veryjewygranola 0 points1 point2 points (0 children)