Sunday, November 23, 2014

Square of an Integer N

The square of an integer N = the square of (N-1) integer + N'th Odd Number.

For Example :
4 = 1 + 3
9 = 4 + 5
16 = 9 + 7
25 = 16 + 9
36 = 25 + 11
49 = 36 + 13
64 = 49 + 15

Look at the third column, they are all odd numbers, while the second column is the square of the previous integer. :) 

https://plus.google.com/107229543234337812645/posts/VbY5aQHeRLs

Thursday, November 6, 2014

How to build and install Boost Libraries










One can use

  •  ./bootstrap.sh --prefix=/usr/include

for the installation path.


Cheers