Quantcast
Channel: MaplePrimes - Questions and Posts tagged with solve
Viewing all articles
Browse latest Browse all 1080

Trouble using 'Solve' for system of equations and inequalities

$
0
0

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?


Viewing all articles
Browse latest Browse all 1080

Trending Articles