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://lifein19x19.com/
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)}
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.
iazzi wrote:The new statement is not equivalent to the original one.