0

What can I do to solve this task?

Solve[Power[x, 2] + Power[y, 2] + 1 == cos[Power[x, 2]*Power[y, 2]], {x, 
  y}]
Queno
  • 3
  • 2

1 Answers1

2
Reduce[Power[x, 2] + Power[y, 2] + 1 == 
  Cos[Power[x, 2]*Power[y, 2]], {x, y}, Reals]

x==0&&y==0

ciao
  • 25,774
  • 2
  • 58
  • 139