Click here to Skip to main content
15,897,704 members
Home / Discussions / Algorithms
   

Algorithms

 
GeneralRe: TIL...... Pin
_Erik_4-Nov-10 7:27
_Erik_4-Nov-10 7:27 
GeneralRe: TIL...... Pin
NeverHeardOfMe4-Nov-10 7:30
NeverHeardOfMe4-Nov-10 7:30 
GeneralRe: TIL...... Pin
MarkLoboo9-Nov-10 22:51
MarkLoboo9-Nov-10 22:51 
AnswerRe: TIL...... Pin
dbaechtel10-Nov-10 2:24
professionaldbaechtel10-Nov-10 2:24 
AnswerRe: TIL...... Pin
Daniel Pfeffer10-Nov-10 8:33
professionalDaniel Pfeffer10-Nov-10 8:33 
GeneralRe: TIL...... Pin
NeverHeardOfMe10-Nov-10 11:10
NeverHeardOfMe10-Nov-10 11:10 
GeneralRe: TIL...... Pin
Daniel Pfeffer10-Nov-10 18:05
professionalDaniel Pfeffer10-Nov-10 18:05 
GeneralRe: TIL...... (better proof) Pin
Daniel Pfeffer10-Nov-10 18:33
professionalDaniel Pfeffer10-Nov-10 18:33 
Now that I think of it, there is no need to carry the Sieve of Erathostenes beyond the second step.

All numbers may be written in the form n = 6*k +l where k is any integer and l = { 0.. 5 }.
Numbers of the form 6*k + {0, 2, 4} are divisible by 2.
Numbers of the form 6*k + {0, 3} are divisible by 3

Numbers of the form 6*k + {1, 5} MAY be prime. With the exception of {2,3} {which are divisible by 2 and by 3, respectively), all primes fit this template.

p^2 = {6*k + l)^2
p^2 = 36*k^2 + 12*k*l + l^2
p^2 = 12*(3*k^2 + k*l} + l^2

The value in the parentheses is always even, and therefore the first term is divisible by 24. We are left with l^2.

By inspection:

1^2 = 1 = 24*0 + 1
5^2 = 25 = 24*1 + 1

QED
AnswerRe: TIL...... Pin
Michael Waters10-Nov-10 10:49
Michael Waters10-Nov-10 10:49 
AnswerRe: TIL...... Pin
cp987610-Nov-10 14:16
cp987610-Nov-10 14:16 
JokeThe full truth is 84. Pin
Bernhard Hiller25-Nov-10 22:32
Bernhard Hiller25-Nov-10 22:32 
JokeMore false idols Pin
cp987627-Nov-10 0:13
cp987627-Nov-10 0:13 
AnswerRe: TIL...... Pin
dpminusa10-Nov-10 14:54
dpminusa10-Nov-10 14:54 
Questionimage bounds after rotation Pin
mehdi001628-Oct-10 11:14
mehdi001628-Oct-10 11:14 
AnswerRe: image bounds after rotation [modified] Pin
Luc Pattyn28-Oct-10 11:39
sitebuilderLuc Pattyn28-Oct-10 11:39 
GeneralRe: image bounds after rotation Pin
Sauro Viti3-Nov-10 10:51
professionalSauro Viti3-Nov-10 10:51 
GeneralRe: image bounds after rotation Pin
Luc Pattyn3-Nov-10 11:10
sitebuilderLuc Pattyn3-Nov-10 11:10 
GeneralRe: image bounds after rotation Pin
Sauro Viti3-Nov-10 20:47
professionalSauro Viti3-Nov-10 20:47 
GeneralRe: image bounds after rotation Pin
harold aptroot3-Nov-10 21:40
harold aptroot3-Nov-10 21:40 
GeneralRe: image bounds after rotation Pin
Sauro Viti3-Nov-10 22:42
professionalSauro Viti3-Nov-10 22:42 
GeneralRe: image bounds after rotation Pin
Luc Pattyn4-Nov-10 2:50
sitebuilderLuc Pattyn4-Nov-10 2:50 
QuestionSimple Algebra Pin
mbadi24-Oct-10 22:59
mbadi24-Oct-10 22:59 
AnswerRe: Simple Algebra Pin
Tadeusz Westawic25-Oct-10 4:50
Tadeusz Westawic25-Oct-10 4:50 
QuestionInterest Calculation (for Pensions Schemes) Pin
mbadi24-Oct-10 21:57
mbadi24-Oct-10 21:57 
AnswerRe: Interest Calculation (for Pensions Schemes) Pin
Richard MacCutchan24-Oct-10 22:44
mveRichard MacCutchan24-Oct-10 22:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.