Group Abstract Group Abstract

Message Boards Message Boards

0
|
22 Views
|
1 Reply
|
1 Total Like
View groups...
Share
Share this post:

FunctionRange with unit circle and fixed angle constraints takes long time

Posted 9 hours ago

This code runs for a long time without results in Mathematica. What is the reason?

FunctionRange[{Abs[x1 + y1 - 1]/Sqrt[2] + Abs[x2 + y2 - 1]/Sqrt[2], 
      x1^2 + y1^2 == 1, x2^2 + y2^2 == 1, x1 x2 + y1 y2 == 1/2}, {x1, y1, 
      x2, y2}, k]
POSTED BY: Wen Dao
Posted 7 hours ago

Problems that include Abs or Conjugate often seem more difficult to solve.

If you could find a way to express the problem in a form similar to

FunctionRange[{(x1 + y1 - 1)/Sqrt[2] +(x2 + y2 - 1)/Sqrt[2], 
  x1^2 + y1^2 == 1, x2^2 + y2^2 == 1,x1 x2 + y1 y2 == 1/2,
  x1+y1-1>=0, x2+y2-1>=0}, {x1, y1, x2, y2}, k]

then you can instantly get a solution. Then you will need to handle the other three cases and combine those results to try to get a complete solution.

POSTED BY: Bill Nelson
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard