NAVIGATIE

Freetime overzicht
Zoeken


  RUBRIEKEN

FAQ / Help
Wat mag niet?
WZL Wedstrijden
WZL Chat
WZL Toolbar
WZL Statistieken
WZL leden
WZL shop
E-cards

RSS

Fun-feed
Babe-feed
Stud-feed

Een groot aantal pokerrooms geven de mogelijkheid om poker te spelen op internet en geld te storten via het veilige iDeal betaalsysteem.
Overzicht » WZL » Algemene zever » Het grote ctrl + v topic!
Onderaan pagina
« vorige - 1 - .. - 40 - 41 - 42 - .. - 130 - volgende »
Flyboy
[mod] everywhere
Sinds 18/6/2003
T:43 - R:4373
30/11/2005 - 23:14u | Quote
MAP2-SUZ5-NUJ5-TEP6-3378
Hawkeye 3.213
Spam Queen
Sinds 31/1/2005
T:14 - R:12483
1/12/2005 - 0:22u | Quote
http://www.lastgangrecords.com/videos/metric_monsterhospital_high.wmv
Chilly Willy 3.067
wzl-lid
Sinds 9/12/2004
T:2 - R:1253
1/12/2005 - 10:30u | Quote
http://wzl.be/fun/index.asp?par=f_post&ID=29&y=2005&m=12&d=1
Flyboy
[mod] everywhere
Sinds 18/6/2003
T:43 - R:4373
1/12/2005 - 13:54u | Quote
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
1/12/2005 - 19:43u | Quote
Pjoe

Suicide Bunny
Sinds 7/11/2003
T:44 - R:1608
20/10/2005 - 10:52u | Quote
Psycho4096 schreef:
u kennende is da nog de gecensureerde versie me dunkt

'k zal hier 'kee kome zinge, al sta 'k er ni vo te springe
over 't school, da vuil riool, waar ik ronddool
'k haal alleen vijven en zessen in al die saaie lessen
al die stomme vakken en die leraars die zitten te kakken
da'k wa beter moe leren, en op moe lette
ma ik kan mij ni concentrere, door ellen haar tette
die naast mij liggen op de bank, ik begluur haar wulpse flank
en als een veel te geile bok steek in mijn hand onder haar rok
mijn vingers glijden in haar grot en ik maak haar helemaal zot
tot ze plots achterover leunt en uitgelaten kreunt
de leraar heeft 't natuurlijk deur en ik vlieg na den directeur
'k moet em alles uit gaan legge, maja, wa moet ik zegge?
mijn vingers rieken nog naar ellen haar deus, dus 'k steek die onder zijne neus
'k hoef al niks meer te vertellen, den dirre zegt direct "verdomme, toch ni ellen?"
ik krijg te horen, nog steeds met ne stijve, da'k 3 weken na moet blijven
stom school, bende idioten,
weet ge wa? - kust allemaal mijn kloten!

Zo dan ?
Tomz0r 3.174
Dimebag
Sinds 15/12/2004
T:17 - R:1049
1/12/2005 - 21:44u | Quote
hmm, blijkbaar niets
Flyboy
[mod] everywhere
Sinds 18/6/2003
T:43 - R:4373
1/12/2005 - 22:57u | Quote
<? $temp = mysql_result($query,$x,"editaantal"; if ($temp != "0" {?> <div align="right">
<br>
<span class="rood"><i>&nbsp;<? echo $temp;?> x aangepast - Laatst aangepast door <a href="users/<? $temp = mysql_result($query,$x,"editusernick"; echo $temp;?>/"><? echo $temp;?></a> op <? echo date("d-m-Y H:m", mysql_result($query,$x,"editdatum");?></i></span> </div>
<? }?>
Hawkeye 3.213
Spam Queen
Sinds 31/1/2005
T:14 - R:12483
2/12/2005 - 0:30u | Quote
Elapsed time is 0.176900 seconds.
Flyboy
[mod] everywhere
Sinds 18/6/2003
T:43 - R:4373
2/12/2005 - 9:15u | Quote
http://www.wdl.be/test/relu
Psycho4096 3.707
mr. spam
Sinds 2/12/2004
T:34 - R:5509
2/12/2005 - 10:21u | Quote
http://argus-online.nl/afbeeldingen/A-011205.gif
Bron: © http://argus-online.nl/afbeeldingen/A-011205.gif
Chilly Willy 3.067
wzl-lid
Sinds 9/12/2004
T:2 - R:1253
2/12/2005 - 13:47u | Quote
http://www.gapingvoid.com/archives_batches/graphics/batch70.jpg
Flyboy
[mod] everywhere
Sinds 18/6/2003
T:43 - R:4373
2/12/2005 - 14:01u | Quote
http://www.wzl.be/fun/index.asp?par=f_post&y=2005&m=12&d=2&ID=137
Palieter 3.045
wzl-lid
Sinds 13/7/2005
T:16 - R:380
2/12/2005 - 14:35u | Quote
( niks )
Flyboy
[mod] everywhere
Sinds 18/6/2003
T:43 - R:4373
2/12/2005 - 14:56u | Quote
7061D9
Hawkeye 3.213
Spam Queen
Sinds 31/1/2005
T:14 - R:12483
2/12/2005 - 16:35u | Quote
> unassign('x'); unassign('a');

> f := x -> x^2 - a;

2


f := x -> x - a

> solve(f(x)=0, x);

(1/2) (1/2)


a , -a

We stellen nu de substitutieformule op voor Newton-Raphson:

> F := unapply(simplify(x - f(x)/D(f)(x)), x);

2


x + a


F := x -> ------


2 x

De vaste punten:

> solve(F(x)=x, x);

(1/2) (1/2)


a , -a

> solve(F(F(x))=x, x);

(1/2) (1/2) 1 (1/2) 1 (1/2)


a , -a , - (-3 a) , - - (-3 a)


3 3

enzovoorts....

> a := 2;

a := 2

> x[0] := sqrt(3*a);

> for i from 1 to 10 do

> x := evalf( F( x[i-1] ) );

> od;

(1/2)


x[0] := 6

x[1] := 1.632993162

x[2] := 1.428869016

x[3] := 1.414288720

x[4] := 1.414213564

x[5] := 1.414213562

x[6] := 1.414213562

x[7] := 1.414213562

x[8] := 1.414213562

x[9] := 1.414213562

x[10] := 1.414213562

> p1 := plot([x, F(x)], x=-3..3, y=-3..3, color=[black, blue]):

> p2 := plot([[x[0], 0], [x[0], x[1]]], color=red):

> p3 := plot([seq( [[x[k-1], x[k]], [x[k],x[k]], [x[k],x[k+1]] ], k=1..9 )], color=red):

> display(p1, p2, p3);



>

MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
2/12/2005 - 16:49u | Quote




Psycho4096 3.707
mr. spam
Sinds 2/12/2004
T:34 - R:5509
2/12/2005 - 17:57u | Quote
Comments 5000
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
2/12/2005 - 18:01u | Quote
cgw3Anm0
Flyboy
[mod] everywhere
Sinds 18/6/2003
T:43 - R:4373
2/12/2005 - 19:52u | Quote
http://flyboy.mine.nu:3456/fileshare2/test.htm
Hawkeye 3.213
Spam Queen
Sinds 31/1/2005
T:14 - R:12483
3/12/2005 - 11:43u | Quote
Explanation: Fifteen years ago, in December of 1990, the Space Shuttle Orbiter Columbia carried an array of astronomical telescopes high above the Earth's obscuring atmosphere to explore the Universe at ultraviolet and x-ray wavelengths. The telescopes, known by the acronyms UIT, HUT, WUPPE, and BBXRT, are seen here in Columbia's payload bay against a spectacular view of the constellation Orion. The ultraviolet telescopes were mounted on a common structure - HUT is visible in this view along with a star tracker (the silver cone at the left). Taken during the nighttime portion of the shuttle's 90 minute orbit, the picture shows the telescopes and structures illuminated by moonlight.
« vorige - 1 - .. - 40 - 41 - 42 - .. - 130 - volgende »
 
Bovenaan pagina