I'm trying to find x of intersection between two simple math functions using only scipy.optimize.minimize I found the point successfully using (fsolve)
fsolve(lambda t: f1(t) - f2(t), x0)
but I'm limited to using only minimize and I couldn't find any solution, any idea?