Logo
Published on

AP and GP crossover

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Problem Statement

A sequence is both arithmetic and geometric. Given a1=6a_1=6 and a3=6a_3=6, find all possible sequences.


Hints

Let AP difference be dd and GP ratio be rr. Use both models on a3a_3.


Solutions

AP gives

a3=a1+2d=6+2d=6    d=0,a_3=a_1+2d=6+2d=6 \implies d=0,

so AP is constant: an=6a_n=6. For GP,

a3=a1r2=6r2=6    r2=1    r=±1.a_3=a_1r^2=6r^2=6 \implies r^2=1 \implies r=\pm 1.

If r=1r=-1, terms alternate 6,6,6,6,-6,6,\ldots and are not arithmetic. Hence the only sequence that is both AP and GP is

an=6for all n,a_n=6\quad \text{for all }n,

with d=0d=0 and r=1r=1.


Further Readings


Connect with me