SlideShare a Scribd company logo
1 of 2
>> symsx
>> I= 3/(x^(3/5))
I =
3/x^(3/5)
>> int(I)
ans =
(15*x^(2/5))/2
>> pretty(ans)
2
-
5
15 x
-----
2
>>
3:_ symsa b x
>> P= (a*x)-(b*x^3)
P =
a*x - b*x^3
>> int(p)
??? Undefinedfunctionorvariable 'p'.
>> int(P)
ans =
(a*x^2)/2 - (b*x^4)/4
>> pretty(ans)
2 4
a x b x
---- - ----
2 4

More Related Content

What's hot

Distributive property in algebra power point
Distributive property in algebra power pointDistributive property in algebra power point
Distributive property in algebra power point
katiewilkerosn
 
ML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional LanguageML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional Language
lijx127
 
Alg1 review of writing equations of lines
Alg1 review of writing equations of linesAlg1 review of writing equations of lines
Alg1 review of writing equations of lines
Carol Defreese
 
5 5a Slope Intercept from Point & Slope
5 5a Slope Intercept from Point & Slope5 5a Slope Intercept from Point & Slope
5 5a Slope Intercept from Point & Slope
Bitsy Griffin
 
CM 1.0 geometry MrG 2011.0912 - sage
CM 1.0 geometry MrG 2011.0912  - sageCM 1.0 geometry MrG 2011.0912  - sage
CM 1.0 geometry MrG 2011.0912 - sage
A Jorge Garcia
 

What's hot (20)

4) quadratic functions factorised form
4) quadratic functions factorised form4) quadratic functions factorised form
4) quadratic functions factorised form
 
Formula1
Formula1Formula1
Formula1
 
Integers
IntegersIntegers
Integers
 
ERPsimulate_script
ERPsimulate_scriptERPsimulate_script
ERPsimulate_script
 
Parent Functions
Parent FunctionsParent Functions
Parent Functions
 
Python PCEP Creating Simple Functions
Python PCEP Creating Simple FunctionsPython PCEP Creating Simple Functions
Python PCEP Creating Simple Functions
 
Langrange method for MATLAB Code
Langrange method for MATLAB CodeLangrange method for MATLAB Code
Langrange method for MATLAB Code
 
Newton's method for MATLAB Code
Newton's method for MATLAB CodeNewton's method for MATLAB Code
Newton's method for MATLAB Code
 
Distributive property in algebra power point
Distributive property in algebra power pointDistributive property in algebra power point
Distributive property in algebra power point
 
R merge-tutorial
R merge-tutorialR merge-tutorial
R merge-tutorial
 
ML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional LanguageML: A Strongly Typed Functional Language
ML: A Strongly Typed Functional Language
 
Alg1 review of writing equations of lines
Alg1 review of writing equations of linesAlg1 review of writing equations of lines
Alg1 review of writing equations of lines
 
Alegebra Powers Substitution
Alegebra Powers SubstitutionAlegebra Powers Substitution
Alegebra Powers Substitution
 
5 5a Slope Intercept from Point & Slope
5 5a Slope Intercept from Point & Slope5 5a Slope Intercept from Point & Slope
5 5a Slope Intercept from Point & Slope
 
Matlab Code for Bisection methode
Matlab Code for Bisection methode Matlab Code for Bisection methode
Matlab Code for Bisection methode
 
precalc preTest 3
precalc preTest 3precalc preTest 3
precalc preTest 3
 
Ejercicios de-operaciones-combinadas-con-nu meros-enteros
Ejercicios de-operaciones-combinadas-con-nu meros-enterosEjercicios de-operaciones-combinadas-con-nu meros-enteros
Ejercicios de-operaciones-combinadas-con-nu meros-enteros
 
Bisection methode alternate
Bisection methode alternateBisection methode alternate
Bisection methode alternate
 
CM 1.0 geometry MrG 2011.0912 - sage
CM 1.0 geometry MrG 2011.0912  - sageCM 1.0 geometry MrG 2011.0912  - sage
CM 1.0 geometry MrG 2011.0912 - sage
 
Matlab code for Bisection Method
Matlab code for Bisection MethodMatlab code for Bisection Method
Matlab code for Bisection Method
 

Mate3

  • 1. >> symsx >> I= 3/(x^(3/5)) I = 3/x^(3/5) >> int(I) ans = (15*x^(2/5))/2 >> pretty(ans) 2 - 5 15 x ----- 2 >> 3:_ symsa b x >> P= (a*x)-(b*x^3) P = a*x - b*x^3
  • 2. >> int(p) ??? Undefinedfunctionorvariable 'p'. >> int(P) ans = (a*x^2)/2 - (b*x^4)/4 >> pretty(ans) 2 4 a x b x ---- - ---- 2 4