Minimum set of constraints required to located a point within a timelineGradient descent vs ternary searchReentrant constraints in active set algorithm?Deleting 0's from a random mod 2 matrixHow to covert min min problem to linear programming problem?Efficient update step to this constrained optimization based on the gradient value?Integer linear programming constraint for maximum number of consecutive ones in a binary sequenceAdding tie-breaking conditions in linear integer optimization problemLinear Programming with Incrementally added constraintsHow is pure adaptive search (PAS) a non-homogenous Poisson process?Is there any algorithm available for this kind of optimization problem

Create chunks from an array

If nine coins are tossed, what is the probability that the number of heads is even?

Cycles on the torus

"If + would" conditional in present perfect tense

Is this Paypal Github SDK reference really a dangerous site?

How do I increase the number of TTY consoles?

Are all players supposed to be able to see each others' character sheets?

Idiom for feeling after taking risk and someone else being rewarded

I can't die. Who am I?

Giving a career talk in my old university, how prominently should I tell students my salary?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

Why does Central Limit Theorem break down in my simulation?

Difference between `nmap local-IP-address` and `nmap localhost`

What do you call someone who likes to pick fights?

How do spaceships determine each other's mass in space?

Trocar background-image com delay via jQuery

What is the purpose of a disclaimer like "this is not legal advice"?

School performs periodic password audits. Is my password compromised?

Use Mercury as quenching liquid for swords?

Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?

How to educate team mate to take screenshots for bugs with out unwanted stuff

Has a sovereign Communist government ever run, and conceded loss, on a fair election?

How do we create new idioms and use them in a novel?

Can the Witch Sight warlock invocation see through the Mirror Image spell?



Minimum set of constraints required to located a point within a timeline


Gradient descent vs ternary searchReentrant constraints in active set algorithm?Deleting 0's from a random mod 2 matrixHow to covert min min problem to linear programming problem?Efficient update step to this constrained optimization based on the gradient value?Integer linear programming constraint for maximum number of consecutive ones in a binary sequenceAdding tie-breaking conditions in linear integer optimization problemLinear Programming with Incrementally added constraintsHow is pure adaptive search (PAS) a non-homogenous Poisson process?Is there any algorithm available for this kind of optimization problem













0












$begingroup$


I have a very specific problem, applicable to my own use-case of what I am trying to do and I was wondering if anyone can help me come up with, or point me directions towards how can I go about solving it. Or whether there is a simple mathematical model I can apply to solve the problem.



Given a fixed timeline, or time represented on a numberline extending far into the future upto a particular value, and extending into the past with a particular value, I need to be able to find the minimum set of constraints that are able to locate a particular point (within a particular accuracy) that lies at an unknown point on the timeline.



This is the solution that I currently have:



enter image description here



As shown in the diagram above, I initially add two constraints:
C1: x = X - 5 and y = Y where Y is some time in the future uptil where I am trying to find my point, lets assume its 25 in this case. This is a known numeric initial value. Similarly, the second constraint is y = X+5 and and x = 25 or any value in the past. Based on where the point is located, it will reject the first constraint, or the second, or both, or accept both. In all equations, 5 is the minimum accuracy to which I want to locate the point. This helps us make the following table:



enter image description here



In step 2, if I want to explore Case 2, I move further to the left, and define another set of constraints similar to the previous one.



This allows me to come up with a general equation for the number of constraints required (given that I add two at each step):



enter image description here



5 + 5*2 (n - 1)



where n = number of iterations.



So, if I wanted an accuracy uptil 25 to the left, I would need exactly n = 3 iterations and therefore a total of 6 constraints.



The question I have is that, even though I am adding two constraints at each step (coz that seems to be the minimum number I can add to be able to locate the point), is there any other way to arrive at the minimum number of constraints, or whether there is a mathematical model that would help me solve it for the minimum number of constraints required given that I want to locate a point within an accuracy of 5. I've thought of Linear Programming, but linear programming doesn't really help me with coming up with the minimum set of constraints.










share|cite|improve this question









$endgroup$
















    0












    $begingroup$


    I have a very specific problem, applicable to my own use-case of what I am trying to do and I was wondering if anyone can help me come up with, or point me directions towards how can I go about solving it. Or whether there is a simple mathematical model I can apply to solve the problem.



    Given a fixed timeline, or time represented on a numberline extending far into the future upto a particular value, and extending into the past with a particular value, I need to be able to find the minimum set of constraints that are able to locate a particular point (within a particular accuracy) that lies at an unknown point on the timeline.



    This is the solution that I currently have:



    enter image description here



    As shown in the diagram above, I initially add two constraints:
    C1: x = X - 5 and y = Y where Y is some time in the future uptil where I am trying to find my point, lets assume its 25 in this case. This is a known numeric initial value. Similarly, the second constraint is y = X+5 and and x = 25 or any value in the past. Based on where the point is located, it will reject the first constraint, or the second, or both, or accept both. In all equations, 5 is the minimum accuracy to which I want to locate the point. This helps us make the following table:



    enter image description here



    In step 2, if I want to explore Case 2, I move further to the left, and define another set of constraints similar to the previous one.



    This allows me to come up with a general equation for the number of constraints required (given that I add two at each step):



    enter image description here



    5 + 5*2 (n - 1)



    where n = number of iterations.



    So, if I wanted an accuracy uptil 25 to the left, I would need exactly n = 3 iterations and therefore a total of 6 constraints.



    The question I have is that, even though I am adding two constraints at each step (coz that seems to be the minimum number I can add to be able to locate the point), is there any other way to arrive at the minimum number of constraints, or whether there is a mathematical model that would help me solve it for the minimum number of constraints required given that I want to locate a point within an accuracy of 5. I've thought of Linear Programming, but linear programming doesn't really help me with coming up with the minimum set of constraints.










    share|cite|improve this question









    $endgroup$














      0












      0








      0





      $begingroup$


      I have a very specific problem, applicable to my own use-case of what I am trying to do and I was wondering if anyone can help me come up with, or point me directions towards how can I go about solving it. Or whether there is a simple mathematical model I can apply to solve the problem.



      Given a fixed timeline, or time represented on a numberline extending far into the future upto a particular value, and extending into the past with a particular value, I need to be able to find the minimum set of constraints that are able to locate a particular point (within a particular accuracy) that lies at an unknown point on the timeline.



      This is the solution that I currently have:



      enter image description here



      As shown in the diagram above, I initially add two constraints:
      C1: x = X - 5 and y = Y where Y is some time in the future uptil where I am trying to find my point, lets assume its 25 in this case. This is a known numeric initial value. Similarly, the second constraint is y = X+5 and and x = 25 or any value in the past. Based on where the point is located, it will reject the first constraint, or the second, or both, or accept both. In all equations, 5 is the minimum accuracy to which I want to locate the point. This helps us make the following table:



      enter image description here



      In step 2, if I want to explore Case 2, I move further to the left, and define another set of constraints similar to the previous one.



      This allows me to come up with a general equation for the number of constraints required (given that I add two at each step):



      enter image description here



      5 + 5*2 (n - 1)



      where n = number of iterations.



      So, if I wanted an accuracy uptil 25 to the left, I would need exactly n = 3 iterations and therefore a total of 6 constraints.



      The question I have is that, even though I am adding two constraints at each step (coz that seems to be the minimum number I can add to be able to locate the point), is there any other way to arrive at the minimum number of constraints, or whether there is a mathematical model that would help me solve it for the minimum number of constraints required given that I want to locate a point within an accuracy of 5. I've thought of Linear Programming, but linear programming doesn't really help me with coming up with the minimum set of constraints.










      share|cite|improve this question









      $endgroup$




      I have a very specific problem, applicable to my own use-case of what I am trying to do and I was wondering if anyone can help me come up with, or point me directions towards how can I go about solving it. Or whether there is a simple mathematical model I can apply to solve the problem.



      Given a fixed timeline, or time represented on a numberline extending far into the future upto a particular value, and extending into the past with a particular value, I need to be able to find the minimum set of constraints that are able to locate a particular point (within a particular accuracy) that lies at an unknown point on the timeline.



      This is the solution that I currently have:



      enter image description here



      As shown in the diagram above, I initially add two constraints:
      C1: x = X - 5 and y = Y where Y is some time in the future uptil where I am trying to find my point, lets assume its 25 in this case. This is a known numeric initial value. Similarly, the second constraint is y = X+5 and and x = 25 or any value in the past. Based on where the point is located, it will reject the first constraint, or the second, or both, or accept both. In all equations, 5 is the minimum accuracy to which I want to locate the point. This helps us make the following table:



      enter image description here



      In step 2, if I want to explore Case 2, I move further to the left, and define another set of constraints similar to the previous one.



      This allows me to come up with a general equation for the number of constraints required (given that I add two at each step):



      enter image description here



      5 + 5*2 (n - 1)



      where n = number of iterations.



      So, if I wanted an accuracy uptil 25 to the left, I would need exactly n = 3 iterations and therefore a total of 6 constraints.



      The question I have is that, even though I am adding two constraints at each step (coz that seems to be the minimum number I can add to be able to locate the point), is there any other way to arrive at the minimum number of constraints, or whether there is a mathematical model that would help me solve it for the minimum number of constraints required given that I want to locate a point within an accuracy of 5. I've thought of Linear Programming, but linear programming doesn't really help me with coming up with the minimum set of constraints.







      optimization constraints






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked yesterday









      QPTRQPTR

      15219




      15219




















          0






          active

          oldest

          votes











          Your Answer





          StackExchange.ifUsing("editor", function ()
          return StackExchange.using("mathjaxEditing", function ()
          StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
          StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
          );
          );
          , "mathjax-editing");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "69"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          noCode: true, onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3140555%2fminimum-set-of-constraints-required-to-located-a-point-within-a-timeline%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Mathematics Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          Use MathJax to format equations. MathJax reference.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3140555%2fminimum-set-of-constraints-required-to-located-a-point-within-a-timeline%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Lowndes Grove History Architecture References Navigation menu32°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661132°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661178002500"National Register Information System"Historic houses of South Carolina"Lowndes Grove""+32° 48' 6.00", −79° 57' 58.00""Lowndes Grove, Charleston County (260 St. Margaret St., Charleston)""Lowndes Grove"The Charleston ExpositionIt Happened in South Carolina"Lowndes Grove (House), Saint Margaret Street & Sixth Avenue, Charleston, Charleston County, SC(Photographs)"Plantations of the Carolina Low Countrye

          random experiment with two different functions on unit interval Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Random variable and probability space notionsRandom Walk with EdgesFinding functions where the increase over a random interval is Poisson distributedNumber of days until dayCan an observed event in fact be of zero probability?Unit random processmodels of coins and uniform distributionHow to get the number of successes given $n$ trials , probability $P$ and a random variable $X$Absorbing Markov chain in a computer. Is “almost every” turned into always convergence in computer executions?Stopped random walk is not uniformly integrable

          How should I support this large drywall patch? Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How do I cover large gaps in drywall?How do I keep drywall around a patch from crumbling?Can I glue a second layer of drywall?How to patch long strip on drywall?Large drywall patch: how to avoid bulging seams?Drywall Mesh Patch vs. Bulge? To remove or not to remove?How to fix this drywall job?Prep drywall before backsplashWhat's the best way to fix this horrible drywall patch job?Drywall patching using 3M Patch Plus Primer