Answer:
1386
Step-by-step explanation:
If you have trouble with that, you can multiply 66 by 20, then 66*1, and add them (break apart the 21.)
The numbers -9 and -4 add up to -13 and multiply to get 36
I hope this helped :)
First, subtract both sides by 25:
x^2 - 6x = -25
Because we're completing the square, we subtract both sides by 9:
x^2 - 6x - 9 = -34
(x - 3) = 5.831 (about)
x = 8.831
Answer:
Step-by-step explanation:
Count pairs (a, b) whose sum of squares is N (a^2 + b^2 = N)
Given a number N, the task is to count all ‘a’ and ‘b’ that satisfy the condition a^2 + b^2 = N.
Note:- (a, b) and (b, a) are to be considered as two different pairs and (a, a) is also valid and to be considered only one time.
Examples:
Input: N = 10
Output: 2
1^2 + 3^2 = 9
3^2 + 1^2 = 9
Input: N = 8
Output: 1
2^2 + 2^2 = 8