Answer:
Step-by-step explanation:
n + 9 > 20
n > 20 - 9
n > 11
The angle right above 4x is equal to x
and 4x + x = 180
5x = 180
/5 /5
x = 36
Answer:
Step-by-step explanation:
lets pick 2 points on the line....(6,5) and (10,3)
slope = (y2 - y1) / (x2 - x1)
(6,5)....x1 = 6 and y1 = 5
(10,3)....x2 = 10 and y2 = 3
now we sub
slope = (3 - 5) / (10 - 6) = -2/4 = -1/2
now we use y = mx + b
slope(m) = -1/2
u can use either of ur points...I will use (6,5)...x = 6 and y = 5
now we sub and find b, the y int
5 = -1/2(6) + b
5 = -3 + b
5 + 3 = b
8 = b
so ur equation is : y = -1/2x + 8 <===
Answer:
the line with the slope of 1/2 will be greater than the one with the slope of 1/4 because 1/2 is greater than 1/4
Step-by-step explanation:
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