pradyvlitzen

5 Reputation

2 Badges

14 years, 210 days

MaplePrimes Activity


These are questions asked by pradyvlitzen

0 = 0, -(1/16)*cos(l1)*cos(l2)*cos(l3)*cos(l4)*(-Pi*x3+4*cos(Pi*t)) = 0, -(1/16)*cos(l1)*cos(l2)*cos(l3)*cos(l4)*(-Pi*x2+4*sin(Pi*t)) = 0, (1/16)*cos(l1)*cos(l2)*cos(l3)*cos(l4) = 0, 0 = 0, -(1/8)*cos(l1)*cos(l3)*cos(l4)*(-Pi*x3+4*cos(Pi*t)) = 0, -(1/8)*cos(l1)*cos(l2)*cos(l4)*(-Pi*x2+4*sin(Pi*t)) = 0, (1/8)*cos(l1)*cos(l2)*cos(l3) = 0

 

After I ran solve({eq1, eq2, eq3, eq4, eq5, eq6, eq7, eq8}, {l1, l2, l3, l4, t, x1, x2, x3}, AllSolutions); I got...

I have a set of functions and parameters, I am computing Jacobian to those functions. I get a matrix rectangular in dimensions. So, determine Jacobian of sub-matrices(formed by removing one column for each sub-matrix) and equating them to zero.

> T := Matrix([[0], [4*t], [0]]); X := Matrix([[x1], [x2], [x3]]); R := Matrix([[1, 0, 0], [0, cos(pi*t), -sin(pi*t)], [0, sin(pi*t), cos(pi*t)]]);

> c1 := x1^2+x2^2-1/4-(1/4)*sin(l1); c2 := x3-sin(l2); c3 := t-1/2-(1/2)*sin(l3);>

GCD := proc (a, b) local sol, x, y, eqs, vars; vars := [x, y]; eqs := [Typesetting:-delayDotProduct(cos(x), sin(y)) = 0, y+sin(x) = b]; sol := solve(eqs, vars); sol end proc

I tried to convert this code into C, using C(GCD) and got an error message that target language may not recognize commands like solve etc., which is obvious. Please let me know if there is any way to convert procedures involving such commands into C code.

Hi, I have recently started working with Maple. I need some help with solve command.

 

VectorCalculus[`*`](cos(x), sin(y)) = 0

y = VectorCalculus[`*`](2, sin(x))

Now if I run solve on above two equations for values...

Page 1 of 1