Post Reply 
CAS Vars and integrals
08-24-2021, 05:37 AM
Post: #1
CAS Vars and integrals
Hello everyone. I have a problem to raise. I wrote a small #cas-program (see below) which performs a definite integral. Each time I launch the program, the integration variable (for example “t”) is stored in “CAS Vars”. Is there any way to avoid storing the variable in “CAS Vars”?
Also, sometimes not only the integration variable is stored in “CAS Vars”, but other things like question marks or whatever. How do I avoid this.
Best regards, Roberto.

Code:
#cas
Beta_r(z,a,b):=
BEGIN
LOCAL funz;
funz:=(t)→(t^(a-1)*(1-t)^(b-1));
RETURN int(funz(t),t,0,z);
END;
#end
[code]
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
CAS Vars and integrals - robmio - 08-24-2021 05:37 AM
RE: CAS Vars and integrals - C.Ret - 08-24-2021, 06:09 PM
RE: CAS Vars and integrals - Albert Chan - 08-24-2021, 08:56 PM
RE: CAS Vars and integrals - rprosperi - 08-24-2021, 11:56 PM



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