Re: unsolvable (math) problem for a whole year, help me!
Posted: Sat May 24, 2014 8:49 am
You are right, I was focusing on the equivalence transformation and totally messed up the negation part.
Life in 19x19. Go, Weiqi, Baduk... Thats the life.
https://www.lifein19x19.com/
When you ask "what is", you must mean something more specific that you are forgetting to tell us. You have already defined X by describing the conditions that characterize its membership. That already says what set X "is". Let us also shorten the definition of X by letting R denote the real line. The parts in "" can be omitted.MJK wrote:Code: Select all
What is the following set X? X = {(a1, a2, b1, b2, x)| ({a1, a2, b1, b2, x} ⊂ {x|x is a real number}) and (a1<x<a2 ⇔ b1<x<b2) and ~(a1=b1 and a2=b2) } ('~' means 'not')
Code: Select all
X = { "set of all" (a1, a2, b1, b2, x) in R^5
| "such that" (a1<x<a2 ⇔ b1<x<b2) and ~(a1=b1 and a2=b2) }Code: Select all
A={(a1,a2,b1,b2,x) in R^5| a1<a2 and b1<b2 and max(a1,b1) < x < min(a2,b2)}
B={(a1,a2,b1,b2,x) in R^5| a1<a2 and b1<b2 and (x <= min(a1,b1) OR x >= max(a2,b2)}
C={(a1,a2,b1,b2,x) in R^5| a1<a2 and b1 >= b2 and (x <= a1 OR x >= a2)}
D={(a1,a2,b1,b2,x) in R^5| a1 >= a2 and b1<b2 and (x <= b1 OR x >= b2)}
E1={(a1,a2,b1,b2,x) in R^5| a1 > a2 and b1 > b2}
E2={(a1,a2,b1,b2,x) in R^5| a1 > a2 and b1 = b2}
E3={(a1,a2,b1,b2,x) in R^5| a1 = a2 and b1 > b2}
E4={(a1,a2,b1,b2,x) in R^5| a1 = a2 and b1 = b2}
F={(a1,a2,b1,b2,x) in R^5| ~(a1=b1 and a2=b2)}
But you only have 2 unbound variables in your original problem.MJK wrote:Yes I am trying to clearly define a set of a five-dimensional space.
Code: Select all
-b/2 < a+b < b/3
a/3 < a+b < -a/2
Now let's introduce another binding:
a = 1-b
which gives us
-b/2 < 1 < b/3
(1-b)/3 < 1 < (b-1)/2
Now let b = 3.5
which gives us
-3.5/2 < 1 < 3.5/3
-2.5/3 < 1 < 2.5/2
which is true.
What is not true is this:
-b/2 < x < b/3
<=>
(1-b)/3 < x < (b-1)/2
when x and b are unbound.
In that case the second inequality must hold for [i]all[/i] x in the range of the first inequality. It is the constraint upon x that allows both inequalities to hold.
He is no longer interested in the original problem. It is all crossed out. The "new problem" seems to be a principle that he previously believed to be true, which he erroneously applied to the original problem.iazzi wrote:The new statement is not equivalent to the original one.