- Cú pháp khai báo biến biểu tượng
>> syms x >> syms x y
>> syms x >> f=x^2+3*x+5
>> syms x y >> g=x^2+y^2+6
- Cú pháp thay giá trị vào biến biểu tượng
>> syms x >> f=f(x) >> subs(f,x,value)
>> syms x >> f=x^2+3*x+5 >> subs(f,x,5)
- Cú pháp lấy đạo hàm biến biểu tượng
>> syms x >> f=f(x) >> diff(f,x)
>> syms x >> f=x^2+3*x+5 >> diff(f,x)