Title

Mathematical Induction

A page of uncommon problems, most closely connected with number theory. Some properties may be proved in different ways. A direct inductive proof is given in the majority of the cases. For more exercises, problems, puzzles, games, math riddles, brain teasers, etc. to see Math Links (not only of math induction).

For those interested in math contests and competitions to see the site:
Art of Problem Solving

New Problems

Additional problems in PDF format.

Let F(n) be the nth Fibonacci number, let p be a prime number distinct from 2 and 5, and let k(p) denote the period of the Fibonacci sequence modulo p (Pisano period). Prove that for any non-negative integer n:
p3 divides ((p2-1)F(k(p)n)/k(p))-nF(p2-1)

The following Pari/GP code is part of a new problem still in revision.

d=2

suc(n)=if(n==0,3,if(n==1,0,if(n==2,2*a,a*suc(n-2)+(a-1)*suc(n-3))))

{for(n=0,n=5,print(factor(sum(i=0,d,binomial(d,i)*(-1)^(d-i)*(suc(6*(i+n)+4))))))}

{for(n=0,n=5,print(factor(sum(i=0,d,binomial(d,i)*(suc(6)-2)^i*(-(a-1)^6)^(d-i)*( 
if(6*(n+i-d)+4<0,(suc(-(6*(n+i-d)+4))-1)/(a-1)^(-(6*(n+i-d)+4)),suc(6*(n+i-d)+4)-1) 
)))))}
	

Comments, references and external links

Interactive Induction

See PHP Script for Problem 21.

Contact

Email Form