practice problems
Q. An integer is assigned to each vertex of a cube. The value of an edge is defined to be the sum of the values of the two vertices it touches, and the value of a face is defined to be the sum of the values of the four edges surrounding it. The value of the cube is defined as the sum of the values of its six faces. Suppose the sum of the integers assigned to the vertices is 34 . What is the value of the cube? Solution: Each vertex is part of 3 edges. Each edge is part of 2 faces. So each vertex gets added 6 times. 34*6 = 204 = Answer Q. Suppose you are asked to fill up a 5×5 grid with any 25 natural numbers such that the sum of numbers in each row is even and each column is odd. Do there exist such a configuration? Solution: No. If each row sum is odd, then total grid sum = odd + odd + odd + odd + odd = 5 odds added = odd But by the same logic for columns it's even. So no. Q. Solution: Factorize: How? Try with (x^(2^3) - y^(2^3)) which is x^8 - y^8 = (x^4 - y^4) (x^4 + y^4) = (x^...