Post Reply 
How to graph Taylor series on the Prime
07-11-2021, 01:06 PM (This post was last modified: 07-11-2021 01:07 PM by roadrunner.)
Post: #3
RE: How to graph Taylor series on the Prime
These commands will recreate that plot:

STARTAPP("Function");
F1:=CAS("taylor(sin('X'),('X') = 0,1,polynom)");
F2:=CAS("taylor(sin('X'),('X') = 0,3,polynom)");
F3:=CAS("taylor(sin('X'),('X') = 0,5,polynom)");
F4:=CAS("taylor(sin('X'),('X') = 0,7,polynom)");
F5:=CAS("taylor(sin('X'),('X') = 0,9,polynom)");
F6:=CAS("taylor(sin('X'),('X') = 0,11,polynom)");
F7:=CAS("taylor(sin('X'),('X') = 0,13,polynom)");
F8:=CAS("sin('X')");
Xmax:=10;
Ymax:=10;
Xmin:=−10;
Ymin:=-10;
CHECK({1,2,3,4,5,6,7,8});
UNCHECK({9,0});
STARTVIEW(1);

-road
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: How to graph Taylor series on the Prime - roadrunner - 07-11-2021 01:06 PM



User(s) browsing this thread: 1 Guest(s)