-1

Prove every natural number greater than $13$ can be express as sum of $3$ and $8$ (regardless of order)

lone student
  • 14,709

2 Answers2

0

If you apply a well-known Euclidean algorithm, you will get

$$3m+8n=k$$

$$m = 8 z + 3 k, ~n = -3 z - k, ~ z\in\mathbb Z$$

Then, we need

$$\begin{cases} 8z+3k ≥0 \\-3z-k≥0\\ k>13\end{cases}$$

Finally, we have

$$k>13, ~ \frac{3k}{8}≥z≥\frac k3$$

For $k>13$, there always exist an integer $z$, such that $\frac{3k}{8}≥z≥\frac k3$ holds.

lone student
  • 14,709
0

First prove this for $14,15,16$ because they are the first numbers greater than $13$.

$14=3+3+8$, $15=3+3+3+3+3$, $16 = 8+8$.

Now, if you add $3$ to each of these, you get

$17 = 3+3+3+8$, $18=3+3+3+3+3+3$, $19=8+8+3$

keep going, adding $3$, and you get

$20 = 3+3+3+3+8$, $21=3+3+3+3+3+3+3$, $22=8+8+3+3$

You can clearly see from these examples that all numbers greater than $13$ can be expressed as the sum of $3$s and $8$ because we can just keep adding $3$ to our original trio to get all the numbers.

Some Guy
  • 2,687