I have some equations like this:
q1 = u1 * h1 , q2 = u2 * h2 , q3 = u3 * h3 (note that u1, u2, and u3 can either be positive or negative, but h1, h2, and h3 are always positive).
REVISION
- If it always fulfills
min(q3,q1) <= q2 <= max(q3,q1)andmin(h3,h1) <= h2 <= max(h3,h1), it DOES NOT always satisfymin(u3,u1) <= u2 <= max(u3,u1). Right? Why? Any proof? - If it always fulfills
min(u3,u1) <= u2 <= max(u3,u1)andmin(h3,h1) <= h2 <= max(h3,h1), it ALWAYS satisfiesmin(q3,q1) <= q2 <= max(q3,q1). Right?
Many thanks.
PS: Please don't forget to consider the functions min and max.
I think you missed the point of the original answer. The moment I break on side of the double inequality I break the whole inequality. I'm not sure why you want that much for a false fact to be a true one but it is still false nevertheless. You can't make any prediction in either of those two cases. Here are two examples (extension to me original ones) to show that the non-obvious cases are still possible:
Example #1:
It is true that
but still
u2is the smallest:Example #2:
It is true that
but still
q2is the smallestOriginal Answer
I don't know why you use 3 triplets and 2 inequalities, it is enough to have 2 triplets and 1 inequality (the other one is exactly the same). So we know that:
and
Statement #1.
Given that you also know that
q2 <= q1, can you say anything about whetheru1 >= u2oru1 <= u2? The answer is "no, you can't". To prove that something is not always true it is enough to provide one counter example.Example #1.1
Clearly
but
Example #1.2
Clearly
and
So both cases are possible
Statement #2.
Given that you know that
u2 <= u1but both ofus can be negative, can you say anything about whetheru1 >= u2oru1 <= u2? The answer is again "no, you can't".Example #1.2 from the previous section says that the case when
u2 <= u1,h2 <= h1andq2 <= q1is possible which is not a big surprise. An example for other possibility must use negative values foru. The intuition behind this example is that if you multiply a big positive number by something negative you get a big negative number which actually means it is a small number comparing to other negative numbers.Example #2.1
Clearly
but
So again both cases are possible.
If we additionally knew that
0 <= u2 <= u1, then we could say thatq2 <= q1. Considerq2 - q1:Obviously if
h1 >= 0andu1 >= 0, all three terms in the last line are non-negative, soq2 - q1is non-negative orq2 >= q1.