Evaluate
⌊ 1 ⌋ + ⌊ 2 ⌋ + ⌊ 3 ⌋ + ⌊ 4 ⌋ + … + ⌊ 5 0 ⌋ .
Details and assumptions
The function ⌊ x ⌋ : R → Z refers to the greatest integer smaller than or equal to x . For example ⌊ 2 . 3 ⌋ = 2 and ⌊ − 5 ⌋ = − 5 .
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.
I like this writeup as it includes an explicit explanation of why we multiply by 3 , 5 , 7 , … respectively. It also indicates how we can quickly generalize this, if 50 was replaced by a much larger value.
Note that for all x ∈ [ k 2 , ( k + 1 ) 2 ) we have ⌊ x ⌋ = k Note that there are 2 k + 1 integers in [ k 2 , ( k + 1 ) 2 ) . So k = 1 ∑ 5 0 ⌊ k ⌋ = k = 1 ∑ 6 k ( 2 k + 1 ) + 2 ⋅ 7 = 2 k = 1 ∑ 6 k 2 + k = 1 ∑ 6 k + 1 4 = 3 6 ⋅ 7 ⋅ 1 3 + 2 6 ⋅ 7 + 1 4 = 2 1 7
Its simple ,upto a square its a sequence, so we get it as= ,3(1)+5(2)+7(3)+9(4)......+(6x2 +1)(6)+7+7 =,lets generalise for summation up to nth term we get sigma((2n+1)(n)) =2(sigma(n^2))+sigma(n) we get ans as 217
The function ⌊x⌋:R→Z refers to the greatest integer smaller than or equal to x. For example ⌊2.3⌋=2 and ⌊−5⌋=−5. s0 (1)+(1.141)+........... 1(3)+2(5)+3(7)+4(9)+5(11)+6(13)+7(2)=217
All the perfect squares in the series are 1,4,9,16,25,36 and 49. The roots between 1 and 4 will have the value 1 ,between 4 and 9 will have the value 2 and similarly for all the numbers between the squares (From greatest integer function).
We will get the expression
1 + ( 2 × 1 ) + 2 + ( 4 × 2 ) + 3 + ( 6 × 3 ) + 4 + ( 8 × 4 ) + 5 + ( 1 0 × 5 ) + 6 + ( 1 2 × 6 ) + 7 + 7 = 2 1 7
(The last 7 is added because GIF of 5 0 is 7)
tu gu ka jasa answer mat de
Take note for all perfect square numbers, such as follows; 1,4,9,16,25,36,49 By inspection, without using calculator if possible, 2 and 3 are slightly larger than 1 but slightly less than 2. Thus, the floor value of these are 1. So there are three 1 value.
Let N be the sum of the floor value from 1 to 5 0
N=1(3)+2(5)+3(7)+5(9)+6(11)+7(2) N= 217
Do we need to do it "by inspection"? If so, does that mean that you need to calculate what 4 1 is, in order to conclude that ⌊ 4 1 ⌋ = 6 ?
you have a great method :)
yes...
The first step is to determine the perfect squares less than 50:
1 , 4 , 9 , 1 6 , 2 5 , 3 6 , 4 9
Now if you take the square root of any number between two perfect squares and use the floor function on it, it will always evaluate to the integer that the less of the perfect roots. In other words, floor 2 is 1, floor 3 is 1 and then floor 4 is 2. Again, using the floor function between 4 up to 9 will be always be 2. This is due to the fact that, 1 < 4 , so the square root of 1 is less than 4 (and any numbers in between). You keep doing this until you have all 50 square roots taken care of - and this all simplifies to:
3 ( 1 ) + 5 ( 2 ) + 7 ( 3 ) + 9 ( 4 ) + 1 1 ( 5 ) + 1 3 ( 6 ) + 2 ( 7 ) = 2 1 7
Note that the odd numbers are just the distances from one perfect square to the next, excluding the 2 multiplied by 7 (this is because we only go to the square root of 50, and there are only two instances of 7).
Floor will be to nearest square number. The difference between the square numbers increases as 3,5,7 etc (4-1=3, 9-4=5 etc) by which you can work out that the sum is just:
( 1 × 3 ) + ( 2 × 5 ) + ( 3 × 7 ) + ( 4 × 9 ) + ( 5 × 1 1 ) + ( 1 3 × 6 ) + ( 7 × 2 ) = 2 1 7
3 + 2 × 5 +(3 \times 7)+---+(6 \times 13) + (7 \times 2) = 217
Problem Loading...
Note Loading...
Set Loading...
let x be a perfect square and y positive integer less then next perfect squre, so for every positive integer y , x ≤ y < ( x + 1 ) 2
x = ⌊ y ⌋
than the sum can be calculated as: ( y − x + 1 ) ∗ x
sum is:
( 4 − 1 ) ∗ 1 + ( 9 − 4 ) ∗ 4
+ ( 1 6 − 9 ) ∗ 9 + ( 2 5 − 1 6 ) ∗ 1 6 + ( 3 6 − 2 5 ) ∗ 2 5 + ( 4 9 − 3 6 ) ∗ 3 6 + ( 5 1 − 4 9 ) ∗ 4 9 = 2 1 7