mathschallenge.net logo

Geometric Division

Problem

A positive integer, n, is divided by d and the quotient and remainder are q and r respectively. In addition d, q, and r are consecutive positive integer terms in a geometric sequence, but not necessarily in that order.

For example, 58 divided by 6 has quotient 9 and remainder 4. It can also be seen that 4, 6, 9 are consecutive terms in a geometric sequence (common ratio 3/2).

Prove that n cannot be prime.

Because JavaScript has been disabled in your browser the solutions will show by default.

Solution

We are solving n = dq + r and clearly the remainder must be less than the divisor; that is, r less than d.

If r greater than q, then the terms will be ordered, d greater than r greater than q.

Let r = qx and d = qx2, where x is the common ratio.

therefore n = dq + r = q2x2 + r = r2 + r = r(r + 1)

But r(r + 1) can only be prime if r = 1, and as r greater than q, q would be non-integer or zero.

Hence q greater than r, and without loss of generality we shall suppose that d greater than q greater than r.

Let q = rx and d = rx2.

therefore n = dq + r = r2x3 + r = r(x3r + 1)

If r = 1 then n = x3 + 1. Therefore x3 must be integer, and as x is the common ratio of a geometric progression x greater than 1.

But x3 + 1 = (x + 1)(x2 minus x + 1) = (x + 1)(x(x minus 1) + 1), and as x greater than or equal 2, it follows that x(x minus 1) + 1 greater than or equal 3. Hence p would be the product of two numbers greater than two and could not be prime.

So let us consider the case where r greater than 1.

If x is integer then p = r(x3r + 1) will be the product of two numbers greater than one and cannot be prime.

Next, consider x being non-integer; let x = a/b where GCD(a, b) = 1.

therefore n = r(x3r + 1) = r(a3r/b3 + 1) = (r/b)(a3r/b2 + b)

But d = rx2 = ra2/b2 and as d is integer it follows that b2 divides r and we can see that a3r/b2 + b will be integer greater than one in value.

Let r/b2 = c implies r/b = bc, and as b greater than or equal 2, r/b greater than or equal 2.

Hence n would again be the product of two integers greater than one and cannot be prime.    Q. E. D.

Problem ID: 304 (12 Jan 2007)     Difficulty: 4 Star