⌊ ⌈ ⌊ n ⌋ ⌉ ⌋ = 3
If all integer values of n that satisfy the above equation occupy the closed interval [ a , b ] , what is the sum a + b ?
Note
⌊ x ⌋ is the floor function , which rounds x down to the nearest integer less than or equal to x
⌈ x ⌉ is the ceiling function , which rounds x up to the nearest integer greater than or equal to x
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
If 9 ≤ ⌈ x ⌉ ≤ 1 6 , shouldn't 8 ≤ x ≤ 1 6 , instead of 1 5 ? Afterall, all numbers between 1 5 and 1 6 satisfy the condition.
Log in to reply
That would be true, but the second inequality in the answer above is " < ", not ≤ ".
Log in to reply
Yes, but it's not ≤ 1 5 , it's still < 1 6 . As I said any number between 1 5 and 1 6 satisfy the condition.
Log in to reply
@Guilherme Niedu – If ⌈ x ⌉ < 1 6 (which I think is the line you're asking about), then we can say ⌈ x ⌉ ≤ 1 5 , because ⌈ x ⌉ is by definition an integer.
From there we get x ≤ 1 5 .
Sorry if I've missed your point - hopefully this explanation was clearer!
No in question itself is given that < or = and > or = for both
⌊ ⌈ ⌊ = 3 | |
⌈ ⌊ ∈ [ 3 , 4 ) | (which numbers floor down to 3) |
⌈ ⌊ ∈ [ 9 , 1 6 ) | (just the range above squared) |
⌈ ⌊ ∈ [ 9 , 1 5 ] | (the result of a ceiling should be an integer) |
⌊ ∈ ( 8 , 1 5 ] | (8.00..1 to 15 ceiling up is in 9 to 15) |
⌊ ∈ ( 6 4 , 2 2 5 ] | (just the range above squared) |
⌊ ∈ [ 6 5 , 2 2 5 ] | (the result of a flooring should be an integer) |
∈ [ 6 5 , 2 2 6 ) | (65 to 225.99...9 flooring down is in 65 to 225) |
n ∈ [ 4 2 2 5 , 5 1 0 7 6 ) | (just the range above squared) |
n ∈ [ 4 2 2 5 , 5 1 0 7 5 ] | (n is an integer) |
Problem Loading...
Note Loading...
Set Loading...
By rephrasing the floors and ceilings as inequalities, and with a bit of careful unpicking, we get 3 ≤ ⌈ ⌊ n ⌋ ⌉ < 4 9 ≤ ⌈ ⌊ n ⌋ ⌉ < 1 6 8 < ⌊ n ⌋ ≤ 1 5 6 4 < ⌊ n ⌋ ≤ 2 2 5 6 5 ≤ n < 2 2 6 6 5 2 ≤ n < 2 2 6 2 6 5 2 ≤ n ≤ 2 2 6 2 − 1
Hence a = 6 5 2 and b = 2 2 6 2 − 1 , and so a + b = 5 5 3 0 0 .