Posted: Wed Feb 16, 2005 5:43 pm
Basically I reduce the 4's with 6's following this IDEA:
Let's say we can group the 4's into N groups ( N is even )
where in each group we have three 4's.
Now each group I substitute with 2 elements of value 6.
So for each i = 1 to N, we do n[6] +=2;
Then I reduce the 5's with 6's following this IDEA:
Let's say we can group the 5's into N groups ( N is even )
where in each group we have six 5's.
Now each group I substitute with 5 elements of value 6.
So for each i = 1 to N, we do n[6] +=5
Apparently this is not logically OK. ?!
Or ?
Let's say we can group the 4's into N groups ( N is even )
where in each group we have three 4's.
Now each group I substitute with 2 elements of value 6.
So for each i = 1 to N, we do n[6] +=2;
Then I reduce the 5's with 6's following this IDEA:
Let's say we can group the 5's into N groups ( N is even )
where in each group we have six 5's.
Now each group I substitute with 5 elements of value 6.
So for each i = 1 to N, we do n[6] +=5
Apparently this is not logically OK. ?!
Or ?