Prove that $(5m+3)(3m+1)=n^2$ is not satisfied by any positive integers $m,n$.
I have been staring at this for some time (it's the difficult part of a competition problem, I won't spoil it by naming the problem). I tried looking at it modulo 3,4,5,7,8,16 for a contradiction, as well as looking at the discriminant with respect to $m$. I couldn't finish either way. I wonder whether it can somehow be used that $(-1,2)$ is a solution.
There is a very small chance that there are actually positive solutions but I've ruled out the first few millions for $m$ with a little Python script and, as I said, this was set in a competition so presumably any solutions would be reasonably small.
I've heard somewhere that all diophantine quadratics can be solved by some method and would be interested to read more (though not an entire book, if possible).
You can rewrite that equation as $(15m+7)^2-15n^2=4$. Looking at this $\pmod 4$, we can find both $15m+7$ and $n$ need to be even. Hence let $15m+7=2a, \,n=2b$, so that we have the more familiar Pell equation $a^2-15b^2=1$ to solve.
Note the smallest positive solution to the Pell equation is $(a_1, b_1) = (4, 1)$, and all others are generated by $a_n+\sqrt{15}\,b_n = (4+\sqrt{15})^n$, or more particularly of our interest, as a recursion, $a_{n+1} = 8a_n-a_{n-1}$ with $a_1=4, a_2=31$.
Further, note we need $2a=15m+7 \implies 2a \equiv 7 \pmod {15} \implies a \equiv 11 \pmod {15}$. However, the Pell recursion solution above seen $\mod {15}$ generates the sequence $a_i = 4, 1, 4, 1, 4, 1...$ which repeats without ever containing an $11$. Hence there can be no positive solution for $(m, n)$.