Examples from Timofeev Chapter 3 and Chapter 7
fricas
(1) -> INT ==> integrate
Type: Void
fricas
pi := %pi
fricas
SIN ==> sin
Type: Void
fricas
COS ==> cos
Type: Void
fricas
TAN ==> tan
Type: Void
fricas
COT ==> cot
Type: Void
fricas
SEC ==> sec
Type: Void
fricas
CSC ==> csc
Type: Void
fricas
LN ==> log
Type: Void
fricas
SQRT ==> sqrt
Type: Void
fricas
ATAN ==> atan
Type: Void
fricas
ACOS ==> acos
Type: Void
fricas
ASIN ==> asin
Type: Void
fricas
ATANH ==> atanh
Type: Void
fricas
)boot $IOindex := 1
Your user access level is compiler and this command is therefore not
available. See the )set userlevel command for more information.
-- " Timofeev (1948) Ch. 3, examples 1 - 3 (p. 101) ... "
INT(1/((x-2)^3*(x+1)^2),x)
Type: Union(Expression(Integer),...)
fricas
INT(1/((x+2)^3*(x+3)^4),x)
Type: Union(Expression(Integer),...)
fricas
INT(x^5/(3+x)^2,x)
Type: Union(Expression(Integer),...)
fricas
-- " Timofeev (1948) Ch. 3, examples 4 - 9 (p. 105) ... "
[]
Type: List(None)
fricas
[]
Type: List(None)
fricas
INT(x/(3+6*x+2*x^2),x)
Type: Union(Expression(Integer),...)
fricas
INT((2*x-3)/(3+6*x+2*x^2)^3,x)
Type: Union(Expression(Integer),...)
fricas
INT((x-1)/(x^2+5*x+4)^2,x)
Type: Union(Expression(Integer),...)
fricas
INT(1/(x^2+3*x+2)^5,x)
Type: Union(Expression(Integer),...)
fricas
INT(1/(x^3*(7-6*x+2*x^2)^2),x)
Type: Union(Expression(Integer),...)
fricas
INT(x^9/(x^2+3*x+2)^5,x)
Type: Union(Expression(Integer),...)
fricas
INT((1+2*x)^2/(3+5*x+2*x^2)^5,x)
Type: Union(Expression(Integer),...)
fricas
-- " Timofeev (1948) Ch. 3, examples 13 - 14 (p. 113) ... "
INT((a-b*x^2)^3/x^7,x)
Type: Union(Expression(Integer),...)
fricas
INT(x^13/(a^4+x^4)^5,x)
Type: Union(Expression(Integer),...)
fricas
-- " ... end of Timofeev Ch. 3 "
fricas
)boot $IOindex := 1
Your user access level is compiler and this command is therefore not
available. See the )set userlevel command for more information.
-- " Timofeev (1948) Ch. 7, examples 1 - 4 (p. 334) ... "
INT(x^2*COS(x)^5,x)
Type: Union(Expression(Integer),...)
fricas
INT(x^3*SIN(x)^3,x)
Type: Union(Expression(Integer),...)
fricas
INT(x^2*SIN(x)^6,x)
Type: Union(Expression(Integer),...)
fricas
INT(x^2*SIN(x)^2*COS(x),x)
Type: Union(Expression(Integer),...)
fricas
-- " Timofeev (1948) Ch. 7, examples 5 - 9 (p. 342-343) ... "
INT(x*COS(x)^4/SIN(x)^2,x)
Type: Union(Expression(Integer),...)
fricas
INT(x*SIN(x)^3/COS(x)^4,x)
Type: Union(Expression(Integer),...)
fricas
INT(x*SIN(x)/COS(x)^3,x)
Type: Union(Expression(Integer),...)
fricas
INT(x*SIN(x)^3/COS(x),x)
Type: Union(Expression(Integer),...)
fricas
INT(x*SIN(x)^3/COS(x)^3,x)
Type: Union(Expression(Integer),...)
fricas
-- " Timofeev (1948) Ch. 7, examples 10 - 11 (p. 344) ... "
INT((2*x+SIN(2*x))/(x*SIN(x)+COS(x))^2,x)
Type: Union(Expression(Integer),...)
fricas
INT((x/(x*COS(x)-SIN(x)))^2,x)
Type: Union(Expression(Integer),...)