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
$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:
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:
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):
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
$endgroup$
add a comment |
$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:
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:
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):
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
$endgroup$
add a comment |
$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:
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:
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):
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
$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:
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:
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):
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
optimization constraints
asked yesterday
QPTRQPTR
15219
15219
add a comment |
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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