Author Topic: What did you get for Christmas?  (Read 14368 times)

0 Members and 1 Guest are viewing this topic.

Offline Stealth

  • Braiiins...
  • 211
What did you get for Christmas?
Quote
Originally posted by TheVirtu
Virtu's Final Christmas Tallyup!

-DVD Player
-DVDs: Spiderman Special Edition, Panic Room, Corky Romano, something else.

-300 USD in cash
-Legend of Zelda: A Link to the Past (Game Boy Advance)
-Calculator
-Candy
-Toothbrush
-Solitare Game


that's a very nice christmas present dude! :nod: :yes: :)

 

Offline Setekh

  • Jar of Clay
  • 215
    • Hard Light Productions
What did you get for Christmas?
Quote
Originally posted by CP5670
Special functions?! :eek: dude, that is exactly the subject that I am into! From the title it sounds like stuff on numerical algorithms and programming techniques for computing these functions. At any rate, you will love that stuff. ;7

Anything in there on the Lambert function? (the product logarithm) I have not seen any really good formulas for getting numerical values of that one, and the standard power series for the principal branch around zero has total crap convergence.


I know you're speaking English, but I hardly understand. :blah: ;)
- Eddie Kent Woo, Setekh, Steak (of Steaks), AWACS. Seriously, just pick one.
HARD LIGHT PRODUCTIONS, now V3.0. Bringing Modders Together since January 2001.
THE HARD LIGHT ARRAY. Always makes you say wow.

 

Offline Joey_21

  • 28
    • http://denebsystem.cjb.net/
What did you get for Christmas?
Quote
Originally posted by Setekh


I know you're speaking English, but I hardly understand. :blah: ;)


:lol: I sorta know what he's talking about - I'm almost into Calculus 1 though. I've just recently figured out how to compute a pretty accurate version of the Gamma function (in which mr. CP5670 tried to assist me with quite a while ago ;) ).

Binet's second formula didn't quite work out for me, CP, sorry. :p I had to stick with a form of the Lanczos approximation along with the reccurrence relation and negative relationship.

I didn't get any maths stuffs for christmas but I did finally discover how to graph custom programs in my TI-82. :D

 

Offline Vertigo1

  • 'Scaper
  • 28
What did you get for Christmas?
Quote
Originally posted by CP5670
still, you would have to pedal it like a madman to even get it flying for an instant... :D


See!  Not only is it a decent defense unit and doubles as an exercise device! :D
Gargoyles, Season 1.  Buy it, or DIE! :)

"Professor! This ship is capable of traveling 90 percent the speed of light! Why are we only doing 35 miles an hour!" - Leela
"Because we're in a hurry!" - Professor

"from a purely stastical standpoint japanese men DO have smaller penii on average" - Kazan

 

Offline Stunaep

  • Thread Necrotech.... we bring the dead to life!
  • 210
What did you get for Christmas?
Quote
Originally posted by CP5670
Special functions?! :eek: dude, that is exactly the subject that I am into! From the title it sounds like stuff on numerical algorithms and programming techniques for computing these functions. At any rate, you will love that stuff. ;7

Anything in there on the Lambert function? (the product logarithm) I have not seen any really good formulas for getting numerical values of that one, and the standard power series for the principal branch around zero has total crap convergence.

whoah, hold on there, cp! the moment my brain gets an illegal error, should be the moment we stop talking about this subject (incidentally, this also causes me to run amok naked on the local supermarket, screaming "THE HERMAFRODITES ARE COMING, THE HERMAFRODITES ARE COMING!!").

besides, I´ve only read the first two chapters of the book. from 3rd chapter and on, i suddenly start thinking about naked women.
"Post-counts are like digital penises. That's why I don't like Shrike playing with mine." - an0n
Bah. You're an admin, you've had practice at this spanking business. - Odyssey

 

Offline CP5670

  • Dr. Evil
  • Global Moderator
  • 212
What did you get for Christmas?
Quote

besides, I´ve only read the first two chapters of the book. from 3rd chapter and on, i suddenly start thinking about naked women.


what were they about? gamma functions, right? (every special functions book starts with the gamma function :D)

Quote
Binet's second formula didn't quite work out for me, CP, sorry.  I had to stick with a form of the Lanczos approximation along with the reccurrence relation and negative relationship.


Do you mean Stirling's formula? (Binet's formula is the bernoulli-type e2pt-1 integral) Although the Lanczos approximation is also quite effective, since it is derived from the same thing except with a term dropped out. :nod:

There is a pretty nice set of numerical special functions out on the internet for the 89 and 92+. Includes gamma, zeta, legendre P and a few others. It cannot do symbolic work, but is good for getting graphs and stuff of the functions.

Quote
See! Not only is it a decent defense unit and doubles as an exercise device!


lol yep, they would certainly get a ton of exercise trying to get that thing to fly... :D

 

Offline Joey_21

  • 28
    • http://denebsystem.cjb.net/
What did you get for Christmas?
Quote
Originally posted by CP5670

Do you mean Stirling's formula? (Binet's formula is the bernoulli-type e2pt-1 integral) Although the Lanczos approximation is also quite effective, since it is derived from the same thing except with a term dropped out. :nod:

There is a pretty nice set of numerical special functions out on the internet for the 89 and 92+. Includes gamma, zeta, legendre P and a few others. It cannot do symbolic work, but is good for getting graphs and stuff of the functions.


I'm pretty sure it was a "form" of the Lanczos.
Reference:
http://www.rskey.org/gamma.htm

Look around where it says "...demonstrates a much more efficient algorithm, the so-called Lanczos approximation for computing the Gamma function..." and then you'll start running into:

Gamma(z) = Sqrt(2*pi)/z*(P(0) + [n = 1 through 6]  P(n)/(z+n)) * (z+5.5)^(z+0.5)*e^-(z+5.5)

where:
p0 = 1.000000000190015
p1 = 76.18009172947146
p2 = -86.50532032941677
p3 = 24.01409824083091
p4 =  -1.231739572450155
p5 = 1.208650973866179 * 10^(-3)
p6 = -5.395239384953 * 10^(-6)

And then from that:

Gamma(-z) = -pi/(Gamma(z+1)*Sin(pi*z))

And using the recurrence relation, the factorial of much larger numbers can be computed (so far for one of my java programs I got the Gamma(171) = 7.257415615308e306 where Windows Calculator computed 170! to be 7.257415615307998967396728211129e+306 so I'd say this thing is pretty accurate :D ).

If you want my source code and stuff just gimme a hollar. :D

There's lots of other good stuff on that page also.

Edit: Might I note that the Stirling formula wasn't "precise" enough for what I was trying to calculate (the shorter one, anyway as shown on the page... and for some reason the long version didn't quite help me out either, not sure why :doubt: ). Although x^x*e^-x*Sqrt(2*pi*x)*(1+1/(12*x)) looks pretty good on a graph, the number output for the approximation above looked much, much better. :)

Edit #2: Oh yea, I remember why the longer version of Stirling's wasn't working right - it was because the accuracy only improved for digits over 5. :ick

This one?:

e^(x*ln(x)-x+ln(Sqrt(2*3.14159265358979/x))+1/(1188*x^9)-1/(1680*x^7)+1/(1260*x^5)-1/(360*x^3)+1/(12*x))
« Last Edit: December 29, 2002, 04:52:18 pm by 34 »

 

Offline Ulundel

  • Big press poppa
  • 210
What did you get for Christmas?
Holy Jesus... :shaking:

 

Offline Levyathan

  • That that guy.
  • 27
What did you get for Christmas?
Poor thread. I guess maths is for threads like AIDS is for humans. Not a good way to die.

 

Offline Dr.Zer0

  • Got Knossos?
  • 27
    • http://www.3dap.com/hlp/hosted/knossos/
What did you get for Christmas?
bah, I know math better then him


lemme see....

X.X+X = ;7
Calvin (Calvin & Hobbes):
My powerful brain in unraveling the myseries of the universe.
------------------
Its all fun and games until you hit the ground
------------------
Visit my site if you play TFC and hate the way it is
custom-tfc.co.uk
[/i]

 

Offline Joey_21

  • 28
    • http://denebsystem.cjb.net/
What did you get for Christmas?
Quote
Originally posted by Dr.Zer0
bah, I know math better then him


lemme see....

X.X+X = ;7


Oh yea? Well (2/pi)^((1/4)*(1-Cos(pi*x)))*2^(x/2)*Gamma(x/2+1) = x!!

:p

 

Offline Dr.Zer0

  • Got Knossos?
  • 27
    • http://www.3dap.com/hlp/hosted/knossos/
What did you get for Christmas?
:blah:

uhh...


sjsfgnjkoehnhjnejhno(yousuck)gnkwjosgjlkgnlk))>>><^^^fgjsignJIFoi==+++miksngo :ick :p
Calvin (Calvin & Hobbes):
My powerful brain in unraveling the myseries of the universe.
------------------
Its all fun and games until you hit the ground
------------------
Visit my site if you play TFC and hate the way it is
custom-tfc.co.uk
[/i]

 

Offline TheVirtu

  • Firedancer
  • 28
    • http://autoassault.edgegaming.com
What did you get for Christmas?
COMMANDLINE: Activate TheLIST Program

>Loading...
>Loading...
>Loaded

>Commandline: Add
>Please enter nickname

>Commandline /add list1 Joey_21
>Commandline /add list1 CP5670

>COMMANDLINE: Set options

>Select an Option
>COMMANDLINE: Destroy LIST1 Members
>Thank you for using The LIST, these users will now be captured and beaten.

>COMMANDLINE: Sleep Mode

>Sleep
« Last Edit: December 29, 2002, 06:11:55 pm by 472 »
Project Leader of the Ascension of Beyond Campaign
"There was a time of peace, this time is over, peace will be paid for in blood."
Site Director of the Auto Assault Outpost- http://autoassault.edgegaming.com
Site Director of the Darkspace Connection - http://www.3dap.com/darkspace
Former Webmaster of i82.co.uk - Shut Down 2/12/03
"If HLP wants your developing, they'll promote you to Senior Engineer, now shutup and focus!" - Shi
Think of the Coke machines! What did they ever do to you![/b]

 

Offline 01010

  • 26
What did you get for Christmas?
Quote
Originally posted by TheVirtu
COMMANDLINE: Activate TheLIST Program

>Loading...
>Loading...
>Loaded

>Commandline: Add
>Please enter nickname

>Commandline /add list1 Joey_21
>Commandline /add list1 CP5670

>COMMANDLINE: Set options

>Select an Option
>COMMANDLINE: Destroy LIST1 Members
>Thank you for using The LIST, these users will now be captured and beaten.

>COMMANDLINE: Sleep Mode

>Sleep


YAYYYYYYY
What frequency are you getting? Is it noise or sweet sweet music? - Refused - Liberation Frequency.

 

Offline Joey_21

  • 28
    • http://denebsystem.cjb.net/
What did you get for Christmas?
Quote
Originally posted by TheVirtu
COMMANDLINE: Activate TheLIST Program

>Loading...
>Loading...
>Loaded

>Commandline: Add
>Please enter nickname

>Commandline /add list1 Joey_21
>Commandline /add list1 CP5670

>COMMANDLINE: Set options

>Select an Option
>COMMANDLINE: Destroy LIST1 Members
>Thank you for using The LIST, these users will now be captured and beaten.

>COMMANDLINE: Sleep Mode

>Sleep


:wtf:

Now you know anybody who tries to get near us will be confused by our l33t m4th sk1llz and run away. :p

 

Offline Dr.Zer0

  • Got Knossos?
  • 27
    • http://www.3dap.com/hlp/hosted/knossos/
What did you get for Christmas?
Quote
Originally posted by Levyathan
Poor thread. I guess maths is for threads like AIDS is for humans. Not a good way to die.


nah, more like spontaneous combustion :doubt:
Calvin (Calvin & Hobbes):
My powerful brain in unraveling the myseries of the universe.
------------------
Its all fun and games until you hit the ground
------------------
Visit my site if you play TFC and hate the way it is
custom-tfc.co.uk
[/i]

  

Offline Shrike

  • Postadmin
  • 211
    • http://www.3dap.com/hlp
What did you get for Christmas?
I AM THE ADMIN, ALL LIGHT COMES FROM ME!  NOW BURN *****ES, BURN!
WE ARE HARD LIGHT PRODUCTIONS. YOU WILL LOWER YOUR FIREWALLS AND SURRENDER YOUR KEYBOARDS. WE WILL ADD YOUR INTELLECTUAL AND VERNACULAR DISTINCTIVENESS TO OUR OWN. YOUR FORUMS WILL ADAPT TO SERVICE US. RESISTANCE IS FUTILE.