quad Bezier/line Intersection
fricas
eqn1:= k*Lr - Pr + Ar*w*(1-w)=0
Type: Equation(Polynomial(Integer))
fricas
eqn2:= k*Ls - Ps + As*w*(1-w)=0
Type: Equation(Polynomial(Integer))
fricas
eqn3:= k*Lt - Pt + At*w*(1-w)=0
Type: Equation(Polynomial(Integer))
fricas
solve([eqn1, eqn2, eqn3], [w])
Type: List(List(Equation(Fraction(Polynomial(Integer)))))
fricas
limit( (sin(2*x)/x)**(1+x), x=0)
There are no library operations named **
Use HyperDoc Browse or issue
)what op **
to learn if there is any operation containing " ** " in its name.
Cannot find a definition or applicable library operation named **
with argument type(s)
Expression(Integer)
Polynomial(Integer)
Perhaps you should use "@" to indicate the required return type,
or "$" to specify which version of the function you need.
limit(sin(x)/x, x=0, "right")
Type: Union(OrderedCompletion
?(Expression(Integer)),
...)
fricas
limit((3**x+5**x)**(1/x), x=0, "right")
There are no library operations named **
Use HyperDoc Browse or issue
)what op **
to learn if there is any operation containing " ** " in its name.
Cannot find a definition or applicable library operation named **
with argument type(s)
PositiveInteger
Variable(x)
Perhaps you should use "@" to indicate the required return type,
or "$" to specify which version of the function you need.
limit((3**x+5**x)**(1/x), x=0)
There are no library operations named **
Use HyperDoc Browse or issue
)what op **
to learn if there is any operation containing " ** " in its name.
Cannot find a definition or applicable library operation named **
with argument type(s)
PositiveInteger
Variable(x)
Perhaps you should use "@" to indicate the required return type,
or "$" to specify which version of the function you need.