I came across an old Putnam problem that i was having some difficulty with, and I was wondering if I could get some assistance of this community.
For a given positive integer $m$, I need to find all the triples $(n,x,y)$ of positive integers, with $n$ relatively prime to $n$, which statisfy $$(x^2+y^2)^m = (xy)^n.$$
At first it seems like the best place to start is through some form of relevant base cases, i.e. starting with $m = 2, n = 3.$ i.e. find $x$ and $y$ solutions such that $$(x^2+y^2)^2 = (xy)^3$$ $$\implies x^4 + 2x^2y^2 + y^4 = x^3y^3.$$
I can tell that this holds for $x = 0, y = 0,$ but how would I go about finding all cases from even this one example? This seems very unweildy when we consider high degree polynomials. What is the best strategy to tackle this kind of problem?