Image
Interordi Menu
Packard
Was ist das?
Offline
419 posts
Quote

[font=Tahoma] Okay dudes, I\'m gonna switch to Yahoo! Japan\'s 8MB ADSL service by next week, and I\'ll be having a new account. So give me a holler if you want to know what\'ll be cooking. My olde bigrock one will no longer be valid after that.

Oh, and who else has DSL? I remember Doc saying something about holding up traffic at his doorfront to have it installed to his PC
[/font]:rolleyes:


Anyone remember the Junebug joke?

Kujacker
First Mate
Inactive
181 posts
Quote

Actually, Packard, Cossack has cable services. I also have cable, thought at times, I wish that I would have chosen DSL... :(

Staff Backer Doctacosa
Admin
SciLab Official
Benevolent Dictator
Offline
6437 posts
Zenny
Zenny
Unlock all of the main forum features!
Acquired on 1 April 2014
Princess Celestia
Princess Celestia
Got all items in the AFD2012 event!
Acquired on 1 April 2012
Squid beaker
Squid beaker
Earned all 150 original CL achievements
Acquired on 17 January 2016
Unity.EXE emblem
Unity.EXE emblem
Defeat Bass.EXE in the AFD2013 event!
Acquired on 1 April 2013
Lilly Satou
Lilly Satou
Acquired on 1 April 2012

... and 25 more
Quote

Cable, DSL, ASDL... It\'s not complicated to choose an Internet connection where I live: it\'s dial-up, or it\'s cable. There are no other choices, since I\'m living outside of the main cities.

Be sure to give me your new e-mail address after you change it, okay? I don\'t want to be sending messages in the void!


The admin formerly known as Dr. Cossack.

Looking for me elsewhere? Maybe look at my Fediverse account for some more-or-less random postings! If you're a gamer, check out my Osmium profile. I'm building that tool!

Soru-Badeguyu
RAGEQUIT
Inactive
375 posts
Quote

i dont care if there\'s a cheaper provider im happy with cable it is sometimes alot better


Image

Vash
Superstar!
Inactive
289 posts
Quote

Cable is nice and fast like a bullet (and it frees up the phone lines). :)

HollowTorment
Interordi's Lovable Jerk
Inactive
4805 posts
Quote

Dial-up is my way to go. It\'s old, slow, and pretty cheap compared to cable and such..well, here anyway.

I\'m -really- cheap. Don\'t say anything clever now.. ;)

Sea Monkey
Superstar!
Inactive
328 posts
Quote

hmm? good move Packard;D I did that after webtv.


Spoiler (click to toggle)
HiGGy's currently working on a MM code archive...

Vash
Superstar!
Inactive
289 posts
Quote

Quote:
Originally posted by HollowTorment
Dial-up is my way to go. It\'s old, slow, and pretty cheap compared to cable and such..well, here anyway.

I\'m -really- cheap. Don\'t say anything clever now.. ;)


i1 := Int( cos(2*t), t=0 .. x): i1 = value(i1);
f1 := unapply( value(i1), x ):
p1 := middlebox(cos(2*x), x = 0 .. 5, 25):
p2 := plot( f1(x), x = 0 .. 5, thickness = 2 ):
p3 := plot( cos(2*x), x = -2 .. 6, thickness = 2 ):
plots[display]({p1, p2, p3}, title=`Riemann Sums and Antiderivative` );

i2 := Int(sin(t)^3, t=0 .. x): i2 = `?`;
f2 := unapply( value(i2), x ):
p1 := plot(sin(x)^3, x = -2*Pi .. 2*Pi, thickness = 3):
p2 := middlebox(sin(x)^3, x = -5..5, 60, thickness = 2):
p3 := plot(f2(x), x = -5..5, style=point):
plots[display]({p1, p2, p3}, scaling=constrained);

i3 := Int(sin(t)^3 * cos(t)^4, t=0 .. x): i3 = `?`;
f3 := unapply( value(i3), x ):
p4 := plot(sin(x)^3 * cos(x)^4, x = -Pi .. 2*Pi, thickness = 3):
p5 := middlebox(sin(x)^3 * cos(x)^4, x = 0..5.5, 60, thickness = 2):
p6 := plot(f3(x), x = 0..5.5, style=point):
plots[display]({p4, p5, p6});

Int( cos(2*t), t = 0 .. x);

plot( {sin(x)^2, -cos(2*x)/2}, x = -2*Pi .. 2*Pi, -1 .. 2,
title=`( sin(x) )^2 and -cos(2*x)/2` );

i4 := Int(cos(x)^2, x): i4 = value(i4);

eq0 := sin(x)^2 + cos(x)^2 = 1: eq0, ``;

eq1 := sin(A + B) = expand(sin(A + B)): eq1;
eq2 := cos(A + B) = expand(cos(A + B)): eq2;
eq3 := subs(A = x, B=x, eq1): eq3;
eq4 := subs(A = x, B=x, eq2): eq4;

eq5 := isolate(eq4, sin(x)^2):
eq6 := isolate(eq0, cos(x)^2):
eq7 := isolate( subs(eq6, eq5), sin(x)^2): eq7;
eq8 := isolate(eq4, cos(x)^2):
eq9 := isolate(eq0, sin(x)^2):
eq10 := isolate(subs(eq9, eq8), cos(x)^2): eq10;

i5 := subs(eq10, i4): i4 = i5; `` = value(i5);
p7 := middlebox(cos(x)^2, x = -1 .. 2.5, 18):
p8 := plot( value(i5), x = -1 .. 2.5, thickness = 2 ):
plots[display]({p7, p8}, title=`Riemann Sums and Antiderivative` );


i6 := Int( sin(x)^2, x):
i7 := subs(eq7, i6): i6 = value(i7);
p9 := middlebox(sin(x)^2, x = -1 .. 5.5, 28):
p10 := plot( value(i6), x = -1 .. 5.5, thickness = 2 ):
p11 := plot(x/2, x = -1 .. 5.5, style=point):
plots[display]({p9, p10, p11}, scaling=constrained,
title=`Riemann Sums and Antiderivative` );

subs(x=t, eq9);

i3 = subs(sin(t)^3=sin(t)*(1 - cos(t)^2), i3);
`` = changevar(cos(t) = u, rhs(\"), u );
`` = expand(rhs(\"));
`` = value(rhs(\"));

i2; plot( {sin^3, f2}, -10 .. 10);

Int(f(u), u);

i8 := Int( sin(x)^4 * cos(x)^5, x): i8; f8 := unapply(value(i8), x):

plot( { sin(x)^4 * cos(x)^5, f8(x) }, x = -10 .. 10);

i9 := Int(sin(x)^2 * cos(x)^2, x):
i9 = subs( eq7, eq10, i9);
`` = simplify( rhs(\"));
`` = subs( subs(x=2*x, eq10), rhs(\"));
`` = value(rhs(\"));

Twigles
Deleted account
Quote

Elisa Communications ADSL is the best :)

HollowTorment
Interordi's Lovable Jerk
Inactive
4805 posts
Quote

Who what when where how why?