- #141
whatta
- 256
- 0
x=+-1, n=0, y=any?
Well, since God is omnipotent, he's should have no problem to do the job with single cut, so your solution is only suboptimal. You should now spend the rest of your life looking for such a space transform that it only takes 1 cut in that space. The day when you find it, heavens will open and accept your enlightened soul.ANYTHING ELSE TO DISCUSS ABOUT IT?
<script>
// find solutions for x^2=ny^2 + 1 in integers for n > 0 by brute force
// this takes lots of time, so be patient and do not abuse task manager
limit = 1234567; // this is when do we stop wasting CPU cycles
for (n = 1; n < 10; n++) {
x = 1;
y = 1;
i = 0;
while (i++ < limit) {
l = x * x;
r = n * y * y + 1;
if (l==r) {
alert ("Solution: n="+n+", x="+x+", y="+y);
break;
}
if (l > r) y++;
if (l < r) x++;
}
if (x * x != n * y * y + 1)
alert ("No solution was found for n="+n+" up to x="+x+", y="+y);
}
alert ("Nothing to wait for :(");
</script>
whatta said:Well, since God is omnipotent, he's should have no problem to do the job with single cut, so your solution is only suboptimal. You should now spend the rest of your life looking for such a space transform that it only takes 1 cut in that space. The day when you find it, heavens will open and accept your enlightened soul.
StatusX said:Here's another question. Prove that, except for the groups of order 1 and 2, every finite group has a non-trivial automorphism (ie, an isomorphism from the group to itself).
Diffy said:Imagine all the ways a cube can taken out of a solid 3d space and put back in. Does this form a group the same way a square does? If so what is this group? What is its order?
kbaumen said:Here's a funny one, though rather simple. Sorry if it has been posted already.
a = 1, b = 1
a = b
a[tex]^{2}[/tex] = ab
a[tex]^{2}[/tex] - b[tex]^{2}[/tex] = ab - b[tex]^{2}[/tex]
(a + b)(a - b) = b(a - b)
a + b = b
1 + 1 = 1
2 = 1
Where is the flaw?