(·) symbol as a synonym of (*)
Publié : mar. mai 29, 2018 8:46 pm
Hi BP, there are many examples in the network that use in mathematical expressions, the ASCII character 183 (·) to represent the multiplication operator. So when you take those examples to the worksheet xcas, it is not interpreted as multiplication, and you have to change them one by one.
Please can you add the (·) symbol as a synonym of (*)
Thank you
PD: The classpad calculator interprets · => *

Please can you add the (·) symbol as a synonym of (*)
Thank you
Code : Tout sélectionner
x² => x^2
x³ => x^3
x+5·x²+7·x·y => x+5*x²+7*x*y
x·(1+5·x+7·y) => x*(1+5*z+7*y)
3·a+5·a²+6·a·d+b·d+b²+3·b => 3*a+5*a²+6*a*d+b*d+b²+3*b
a·(3+5·a+6·d)+b·(d+b+3) => a*(3+5*a+6*d)+b*(d+b+3)
5·z+z·y+2·z²+3·z·x+6 => 5*z+z*y+2*z²+3*z*x+6
