- #1
Terry1
- 4
- 0
Hi,
I have 2 equations...
m = x + y + 1
n = x - y
where x > y > 0
I have 2 requirements of the above
m and n must be of opposite parity (which they are)
and I also require GCD(m, n) = 1, i.e. coprime.
Is there a way of selecting x and y so this condition is met?
For example, if I let x = 10 then m and n are coprime when y = {2, 5, 6, 8, 9} and not coprime when y = {1, 3, 4, 7}
Thanks for any help you can give.
I have 2 equations...
m = x + y + 1
n = x - y
where x > y > 0
I have 2 requirements of the above
m and n must be of opposite parity (which they are)
and I also require GCD(m, n) = 1, i.e. coprime.
Is there a way of selecting x and y so this condition is met?
For example, if I let x = 10 then m and n are coprime when y = {2, 5, 6, 8, 9} and not coprime when y = {1, 3, 4, 7}
Thanks for any help you can give.
Last edited: