Because you so nasty!



 Science > Physics > Because you so nasty!

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 1

1

 
Topic: Science > Physics
User: "dedanoe"
Date: 17 Aug 2006 04:49:28 AM
Object: Because you so nasty!
I want to share this amuzing way of making spirals from integers. The
equation is:
repeat
B := Trunc(Sqrt(A));
C := 2 * Sqr(B) - A;
if A <> C then A := C;
until (A <= 3) or (A = C);
The progaram is available at: www.geocities.com/dedanoe/delphiart.zip I
was interested if you can ***** up with some solid theory for this. My
tendency was to get this type of matrix equation:
+- -+ +- -+ +- -+
| Sqrt(A) B | | x1 x2 | | B Sqrt(C) |
| | = | | X | |
| B Sqrt(A) | | y1 y2 | | Sqrt(C) B |
+- -+ +- -+ +- -+
The funny thing is that this is how my dynamic lever functions. Go on,
check my usenet posts.
Then I intend to turn the matrix {{x1, x2}, {y1, y2}} into {{0, -1},
{1, B}}. I hope that will help me write A (if A is not prime) as
product of two integers. For that purpose I can extend one row (column)
and add it to the other row (column). Yes, indeed the matrix {{x1, x2},
{y1, y2}} has norm =1 because:
|Sqrt(A) B| |B Sqrt(C)|
A-B^2=| |=| |=B^2-C
|B Sqrt(A)| |Sqrt(C) B|
Some examples to get you interested:
16 - 9 = 9 - 2; BigestCommonDivider(16, 2) = 2 <> 1;
15 - 9 = 9 - 3; BigestCommonDivider(15, 3) = 3 <> 1;
14 - 9 = 9 - 4; BigestCommonDivider(14, 4) = 2 <> 1;
13 - 9 = 9 - 5; 13 and 5 are both primes;
12 - 9 = 9 - 6; BigestCommonDivider(12, 6) = 6 <> 1;
11 - 9 = 9 - 7; 11 and 7 are both primes;
10 - 9 = 9 - 8; BigestCommonDivider(10, 8) = 2 <> 1;
Note this:
Step 1: 117 - 100 = 100 - 83;
Step 2: 83 - 81 = 81 - 79;
Step 3: 79 - 64 = 64 - 49;
End: 49 = Sqr(7);
117 = 3 * 3 * 13
***** on give me some theory, right?
Dobri Karagorgov -- Dedanoe
schizo-paranoid-lever-sex-pert
http://dedanoe.tripod.com
.

User: "dedanoe"

Title: Happy math 18 Aug 2006 04:45:47 AM
Because you so nasty!
I want to share this amazing way of making spirals from integers. The
equation is:
repeat
B:= Trunc(Sqrt(A));
C:= 2*Sqr(B) - A;
if A = C then Exit_This_Block;
A:= C;
until A <= 3;
Functional progaram is available at:
www.geocities.com/dedanoe/delphiart.zip I was interested if you can *****
up with some solid theory for this. My tendency was to get this type of
matrix equation:
+- -+ +- -+ +- -+
| Sqrt(A) B | | x1 x2 | | B Sqrt(C) |
| | = | | X | |
| B Sqrt(A) | | y1 y2 | | Sqrt(C) B |
+- -+ +- -+ +- -+
The funny thing is that this is how my dynamic lever functions. Go on,
check my usenet posts. Then I intend to turn the matrix {{x1, x2}, {y1,
y2}} into {{0, -1}, {1, B}}. I hope that will help me write A (if A is
not prime) as product of two integers. For that purpose I can extend
one row (column) and add it to the other row (column). Yes, indeed the
matrix {{x1, x2}, {y1, y2}} has norm =1 because:
|Sqrt(A) B| |B Sqrt(C)|
A-B^2=| |=| |=B^2-C
|B Sqrt(A)| |Sqrt(C) B|
Some examples to get you interested:
16 - 9 = 9 - 2; BigestCommonDivider(16, 2) = 2 <> 1;
15 - 9 = 9 - 3; BigestCommonDivider(15, 3) = 3 <> 1;
14 - 9 = 9 - 4; BigestCommonDivider(14, 4) = 2 <> 1;
13 - 9 = 9 - 5; 13 and 5 are both primes;
12 - 9 = 9 - 6; BigestCommonDivider(12, 6) = 6 <> 1;
11 - 9 = 9 - 7; 11 and 7 are both primes;
10 - 9 = 9 - 8; BigestCommonDivider(10, 8) = 2 <> 1;
Note this:
Step 1: 117 - 100 = 100 - 83;
Step 2: 83 - 81 = 81 - 79;
Step 3: 79 - 64 = 64 - 49;
End: 49 = Sqr(7);
117 = 3 * 3 * 13
***** on give me some theory, right?
Dobri Karagorgov -- Dedanoe
schizo-paranoid-lever-sex-pert
http://dedanoe.tripod.com
Appendix
+- -+ +- -+ +- -+
| Sqrt(A) B | | x1 x2 | | B Sqrt(C) |
| | = | | X | |
| B Sqrt(A) | | y1 y2 | | Sqrt(C) B |
+- -+ +- -+ +- -+
+- -+ +- -+
| Sqrt(A) B | | Sqrt(A)+kB B+kSqrt(A) |
| | ~ | |
| B Sqrt(A) | | B Sqrt(A) |
+- -+ +- -+
+- -+ +- -+
| Sqrt(A) B | | Sqrt(A)+kB B+kSqrt(A)+n(Sqrt(A)+kB) |
| | ~ | |
| B Sqrt(A) | | B Sqrt(A)+nB |
+- -+ +- -+
+-
|(Sqrt(A)+kB)(Sqrt(A)+nB)=A
|
|B(B+kSqrt(A)+n(Sqrt(A)+kB))=B^2
+-
+-
|(k+n)Sqrt(A)+nkB=0 -nkB
| => Sqrt(A) = -------
|(k+n)Sqrt(A)+nkB=0 n + k
+-
+- -+ +- -+
| Sqrt(A) B | | -nkB/(n+k)+kB B(1+nk)+(n+k)(-nkB)/(n+k) |
| | ~ | |
| B Sqrt(A) | | B -nkB/(n+k)+nB |
+- -+ +- -+
+- -+ +- -+
| Sqrt(A) B | | k^2/(n+k) 1 |
| | ~ B^2| |
| B Sqrt(A) | | 1 n^2/(n+k) |
+- -+ +- -+
+- -+ +- -+
| B Sqrt(C) | | B+kSqrt(C) Sqrt(C)+kB |
| | ~ | |
| Sqrt(C) B | | Sqrt(C) B |
+- -+ +- -+
+- -+ +- -+
| B Sqrt(C) | | B+kSqrt(C) Sqrt(C)+kB+nB+nkSqrt(C) |
| | ~ | |
| Sqrt(C) B | | Sqrt(C) B+nSqrt(C) |
+- -+ +- -+
+-
|(n+k)B+nkSqrt(C)=0 -(n+k)B
| => Sqrt(C) = ---------
|(n+k)B+nkSqrt(C)=0 nk
+-
+- -+ +- -+
| B Sqrt(C) | | k/n (n+k)/(nk) |
| | ~ B^2| |
| Sqrt(C) B | | (n+k)/(nk) n/k |
+- -+ +- -+
+- -+ +- -+ +- -+
| k^2/(n+k) 1 | | x1 x2 | | k/n (n+k)/(nk) |
| | = | | X | |
| 1 n^2/(n+k) | | y1 y2 | | (n+k)/(nk) n/k |
+- -+ +- -+ +- -+
Now we only need to pick them k and n so that k^2/(n+k) and n^2/(n+k)
are integers.
+- +-
|k^2=x(n+k) |k(k-x)=xn k x n-y
| => | => --- = ----- = -----
|n^2=y(n+k) |n(n-y)=yk n k-x y
+- +-
xy=(n-y)(k-x)=nk-nx-ky+xy
nk=nx+ky
1 = (x/k) + (y/n)
You're welcome to conclude this math!
Dobri Karagorgov -- Dedanoe
schizo-paranoid-lever-sex-pert
http://dedanoe.tripod.com
.
User: "Playfullminx"

Title: Re: Happy math 18 Aug 2006 01:31:04 PM
dedanoe wrote:

Because you so nasty!

I want to share this amazing way of making spirals from integers. The
equation is:

repeat
B:= Trunc(Sqrt(A));
C:= 2*Sqr(B) - A;
if A = C then Exit_This_Block;
A:= C;
until A <= 3;

Functional progaram is available at:
www.geocities.com/dedanoe/delphiart.zip I was interested if you can *****
up with some solid theory for this. My tendency was to get this type of
matrix equation:

+- -+ +- -+ +- -+
| Sqrt(A) B | | x1 x2 | | B Sqrt(C) |
| | = | | X | |
| B Sqrt(A) | | y1 y2 | | Sqrt(C) B |
+- -+ +- -+ +- -+

The funny thing is that this is how my dynamic lever functions. Go on,
check my usenet posts. Then I intend to turn the matrix {{x1, x2}, {y1,
y2}} into {{0, -1}, {1, B}}. I hope that will help me write A (if A is
not prime) as product of two integers. For that purpose I can extend
one row (column) and add it to the other row (column). Yes, indeed the
matrix {{x1, x2}, {y1, y2}} has norm =1 because:

|Sqrt(A) B| |B Sqrt(C)|
A-B^2=| |=| |=B^2-C
|B Sqrt(A)| |Sqrt(C) B|

Some examples to get you interested:
16 - 9 = 9 - 2; BigestCommonDivider(16, 2) = 2 <> 1;
15 - 9 = 9 - 3; BigestCommonDivider(15, 3) = 3 <> 1;
14 - 9 = 9 - 4; BigestCommonDivider(14, 4) = 2 <> 1;
13 - 9 = 9 - 5; 13 and 5 are both primes;
12 - 9 = 9 - 6; BigestCommonDivider(12, 6) = 6 <> 1;
11 - 9 = 9 - 7; 11 and 7 are both primes;
10 - 9 = 9 - 8; BigestCommonDivider(10, 8) = 2 <> 1;

Note this:
Step 1: 117 - 100 = 100 - 83;
Step 2: 83 - 81 = 81 - 79;
Step 3: 79 - 64 = 64 - 49;
End: 49 = Sqr(7);
117 = 3 * 3 * 13

***** on give me some theory, right?

Dobri Karagorgov -- Dedanoe
schizo-paranoid-lever-sex-pert
http://dedanoe.tripod.com

Appendix

+- -+ +- -+ +- -+
| Sqrt(A) B | | x1 x2 | | B Sqrt(C) |
| | = | | X | |
| B Sqrt(A) | | y1 y2 | | Sqrt(C) B |
+- -+ +- -+ +- -+

+- -+ +- -+
| Sqrt(A) B | | Sqrt(A)+kB B+kSqrt(A) |
| | ~ | |
| B Sqrt(A) | | B Sqrt(A) |
+- -+ +- -+

+- -+ +- -+
| Sqrt(A) B | | Sqrt(A)+kB B+kSqrt(A)+n(Sqrt(A)+kB) |
| | ~ | |
| B Sqrt(A) | | B Sqrt(A)+nB |
+- -+ +- -+

+-
|(Sqrt(A)+kB)(Sqrt(A)+nB)=A
|
|B(B+kSqrt(A)+n(Sqrt(A)+kB))=B^2
+-

+-
|(k+n)Sqrt(A)+nkB=0 -nkB
| => Sqrt(A) = -------
|(k+n)Sqrt(A)+nkB=0 n + k
+-

+- -+ +- -+
| Sqrt(A) B | | -nkB/(n+k)+kB B(1+nk)+(n+k)(-nkB)/(n+k) |
| | ~ | |
| B Sqrt(A) | | B -nkB/(n+k)+nB |
+- -+ +- -+

+- -+ +- -+
| Sqrt(A) B | | k^2/(n+k) 1 |
| | ~ B^2| |
| B Sqrt(A) | | 1 n^2/(n+k) |
+- -+ +- -+

+- -+ +- -+
| B Sqrt(C) | | B+kSqrt(C) Sqrt(C)+kB |
| | ~ | |
| Sqrt(C) B | | Sqrt(C) B |
+- -+ +- -+

+- -+ +- -+
| B Sqrt(C) | | B+kSqrt(C) Sqrt(C)+kB+nB+nkSqrt(C) |
| | ~ | |
| Sqrt(C) B | | Sqrt(C) B+nSqrt(C) |
+- -+ +- -+

+-
|(n+k)B+nkSqrt(C)=0 -(n+k)B
| => Sqrt(C) = ---------
|(n+k)B+nkSqrt(C)=0 nk
+-

+- -+ +- -+
| B Sqrt(C) | | k/n (n+k)/(nk) |
| | ~ B^2| |
| Sqrt(C) B | | (n+k)/(nk) n/k |
+- -+ +- -+

+- -+ +- -+ +- -+
| k^2/(n+k) 1 | | x1 x2 | | k/n (n+k)/(nk) |
| | = | | X | |
| 1 n^2/(n+k) | | y1 y2 | | (n+k)/(nk) n/k |
+- -+ +- -+ +- -+

Now we only need to pick them k and n so that k^2/(n+k) and n^2/(n+k)
are integers.

+- +-
|k^2=x(n+k) |k(k-x)=xn k x n-y
| => | => --- = ----- = -----
|n^2=y(n+k) |n(n-y)=yk n k-x y
+- +-

xy=(n-y)(k-x)=nk-nx-ky+xy

nk=nx+ky

1 = (x/k) + (y/n)

You're welcome to conclude this math!

Dobri Karagorgov -- Dedanoe
schizo-paranoid-lever-sex-pert
http://dedanoe.tripod.com

Oh I get it. That's the equation on how to make a dumbass!! Throw in
an OT level, and it's a dumbass scientologist!!
Makes perfect sense!
.


User: "Cranks Reply"

Title: Re: Because you so nasty! 17 Aug 2006 08:29:41 AM
dedanoe wrote:

I want

i want you to ***** yourself.
we dont always get what we want.
.
User: "dedanoe"

Title: Re: Because you so nasty! 18 Aug 2006 04:44:08 AM
Shake my spear durling. Shake it well before i stab your *****. I didn't
killed your parents and make you orphan. I only gave you half a truth
expecting to destroy the world as you know it. The Bible and the Kuran
are half a truth and they rule the world. Half a truth is Shakespear's
oxymonoron. I sometimes like to call it photonic stampeedo. It's a way
of givin nothing to get all.
Cranks Reply =D0=BD=D0=B0=D0=BF=D0=B8=D1=88=D0=B0:

dedanoe wrote:

I want

=20
i want you to ***** yourself.
=20
we dont always get what we want.

.



  Page 1 of 1

1

 


Related Articles
Re: Did you make a nasty boom-boom in your diaper. Don't worry MOMMY will take care of your dirty bottom! (AB/DL)
Nasty little Truth About Traveler
Nasty Little Truth About Time
Re: KKI analysis of Brad Guth and NOMINATION for Kook of the Month and Goofy Azzed Babboon was Re: What's so HOT and NASTY about Venus?
Nasty Little Truth About Space
Nasty Little Truth About Size
Do You Want To Know For Sure That You Are Going To Heaven? The reason some people don't know for sure if they are going to Heaven when they die is because they just don't know. The good news is that you can know for sure that you are going to Heaven
Re: Do You Want To Know For Sure That You Are Going To Heaven? The reason some people don't know for sure if they are going to Heaven when they die is because they just don't know. The good news is that you can know for sure that you are going to Hea
Yes, REAL suspected Black Holes can RiP you APART.!! But NOT in GR gtr Tivity.!! Because in GR Tivity you would be a POiNT ..and if you COULD have a mass, in GR, you would be a POiNT-mass. POiNT-mass CANNOT *STRETCH* with TOP & BOTTOM ROCKETs attache
Do You Want To Know For Sure That You Are Going To Heaven? The reason some people don't know for sure if they are going to Heaven when they die is because they just don't know. The good news is that you can know for sure that you are going to Heaven
Yes, REAL suspected Black Holes can RiP you APART.!! But NOT in GR gtr Tivity.!! Because in GR Tivity you would be a POiNT ..and if you COULD have a mass, in GR, you would be a POiNT-mass. POiNT-mass CANNOT *STRETCH* with TOP & BOTTOM ROCKETs attache
What's Wrong Cat Got Your tongue? You people stopped Damning my Model...
Re: What's Wrong With You People, Why You Stopped Damning The Smart
Do you think he got that tranporter working?
Is there anyone else you know of that can do this?
 

NEWER

pg.1612     pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER