![](https://static.wixstatic.com/media/5683a8_d2223678f096408b92279dbede451e4d~mv2.png/v1/fill/w_220,h_220,al_c,q_85,enc_auto/5683a8_d2223678f096408b92279dbede451e4d~mv2.png)
Floor Function - A function that takes an input as a real number and gives an output that is the greatest integer less than or equal to the number. It is denoted by the following symbols: [x], ⌊x⌋, floor(x) and [[x]]
Examples: ⌊1.9⌋ = 1 and ⌊2.6⌋ = 2
Ceiling Function - A function that takes an input as a real number and gives an output that is the least integer greater than or equal to the resulting number. It is denoted by the following symbols: ⌈x⌉, ]x[, and ]]x[[
Examples: ⌈8.1⌉ = 9 and ⌈1.1⌉ = 2
Comments