28th

5 Reputation

One Badge

5 years, 222 days

MaplePrimes Activity


These are questions asked by 28th

testing2.mw
 

restart

P := 10; -1; r := .5; -1; c := 1; -1; Rb := proc (alpha) options operator, arrow; (1/2)*P+(1/2)*c+(1/2)*alpha*cos(alpha) end proc; -1; plot(Rb, 0 .. (1/2)*Pi); -1; sys1 := {beta > 0, beta = cot(beta), beta < (1/2)*Pi}; -1; p := solve({beta > 0, beta = cot(beta), beta < (1/2)*Pi}, {beta})

"p:="

(1)

sys := {x^2 = 9, x+y < 10}; -1; m := solve({x^2 = 9, x+y < 10}, {x, y})

{x = 3, y < 7}, {x = -3, y < 13}

(2)

NULL

NULL

 

 

Greetings!

I'm triying to solve this system in Maple:

  beta = cot(beta),

  0 < beta < (1/2)*Pi

But when I execute this statement

  p := solve({beta = cot(beta), beta>0, beta<(1/2)*Pi}, {beta})

the value of p in NULL.  Maple doesn't show any errors. 

Edit: Example from the "solve" help article works as shown, that was my typo.

Could you please tell me, what am I doing wrong?

Page 1 of 1