Symbolic variables and equations. Beginner
2 views (last 30 days)
Show older comments
I've just started using matlab and am having a problem understanding what this question wants and the commands i need to use to solve it.
Create the symbolic variables
a b c d x
and use them to create the following symbolic expressions:
se1 = x^3 -3*x^2 +x
se2 = sin(x) + tan(x)
se3 =(2*x^2 - 3*x - 2)/(x^2 - 5*x)
se4 = (x^2 -9)/(x+3)
The question wants me to write the commands I used in MATLAB with comments.
So far all I can think to do is
syms a b c d x
and maybe something with the solve function. although i have no idea what to do or where to start.
Thanks for any help.
0 Comments
Answers (1)
William
on 1 Nov 2011
clc
clear
syms a b c d x
se1 = x^3 -3*x^2 +x
se2 = sin(x) + tan(x)
se3 =(2*x^2 - 3*x - 2)/(x^2 - 5*x)
Type
help syms
se4 = (x^2 -9)/(x+3)
if you want to plot them type:
help ezplot
2 Comments
Walter Roberson
on 1 Nov 2011
se1 = x^3 -3*x^2 +x
and so on _is_ the method you use to create a symbolic expression using the symbolic variables.
The assignment doesn't seem to have much point to it ;-)
See Also
Categories
Find more on Assumptions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!