MIN < x < MAX
0.75
The triangle inequality theorem states that any side of a triangle is always shorter than the sum of the other two sides.
Therefore the the third side must be less than KNOWN[ 0 ] + KNOWN[ 1 ] = MAX
By the same theorem, the third side must be also larger than the difference between the other two sides.
Therefore the third side must be larger than KNOWN[0] < KNOWN[1] ? KNOWN[1] : KNOWN[0] - KNOWN[0] < KNOWN[1] ? KNOWN[0] : KNOWN[1] = MIN
So MIN < x < MAX
Triangle inequality theorem states that a side must be smaller than the sum of the other two sides.
Let's check for all three sides:
MAIN[ 1 ][ i ] + MAIN[ 1 ][ ( i + 1 ) % 3 ] = ( parseFloat( MAIN[ 1 ][ i ] ) + parseFloat( MAIN[ 1 ][ ( i + 1 ) % 3 ] ) ).toFixed( 1 )
MAIN[ 1 ][ ( i + 2 ) % 3 ] is not smaller than ( parseFloat( MAIN[ 1 ][ i ] ) + parseFloat( MAIN[ 1 ][ ( i + 1 ) % 3 ] ) ).toFixed( 1 ) so the theorem does not holdholds.
All three sides conform to the inequality theorem, so this triangle can exist.
Not all three sides conform to the inequality theorem, so this triangle cannot exist.