Hi, I want to know how to extract the value of X and Y Manipulate [], Hi, I want to know how to extract the value of X and Y Manipulate [] and assign it to use again in a recursive function.
f[a_, b_, x_] := a x^3 + x^b + 4
g[a_, b_, x_, y_] := x y - a x ;
Manipulate[
FindRoot[{f[a, b, x] == 0,
g[a, b, x, y] == CantidadX}, {{x, 1}, {CantidadX, 1}}], {a, 4,
5}, {b, 1, 2}, {y, 1, 2}]