1. The midpoint of the segment joining points (a, b) and ( j, k) is ((j+a)/2,(k+b)/2)
2. Let the coordinate of H be (a, b)
T(0, 4) = ((a + 0)/2, (b + 2)/2)
(a + 0)/2 = 0 => a + 0 = 0 => a = 0
(b + 2)/2 = 4 => b + 2 = (2 x 4) = 8 => b = 8 - 2 = 6
Therefore, the cordinate of H is (0, 6)
3. Point (-4, 3) lies in Quadrant II
4. Point (6, 0) lies on the x-axis
5. Any line with no slope is parallel to the y-axis
7. a is the value of the x-coordinate.
5a + 3 = 8
5a = 8 - 3 = 5
a = 5/5 = 1
a = 1
8. Equation of a circle is given by (x - a)^2 + (y - b)^2 = r^2; where (a, b) is the center and r is the radius.
For the given circle (x + 5)^2 + (y - 7)^2 = 36 => (x - (-5))^2 + (y - 7)^2 = 6^2 => a = -5 and b = 7.
Therefore, its center point is (-5, 7)
9. Equation of a circle is given by (x - a)^2 + (y - b)^2 = r^2; where (a, b) is the center and r is the radius.
For the given circle (x + 5)^2 + (y - 7)^2 = 36 => (x - (-5))^2 + (y - 7)^2 = 6^2 => r = 6.
Therefore, its radius is 6
10. If the equation of a circle is (x - 2)^2 + (y - 6)^2 = 4, the center is point (2, 6).
True
1 box =1 foot so you would have to count the boxes away from her
Answer:
1010010001
Step-by-step explanation:
Keep dividing 657 by 2, and record the quotient and remainder
657
328,1
164,0
82,0
41,0
20,1
10,0
5,0
2,1
1,0
So chain the remainders from bottom up to get the binary number:
1010010001
Check:
1+16+128+512=657 checks.
Answer:
37.5
Step-by-step explanation:
180-75 = 105
180 is the sum of all the angle in a triangle
180-105 = 75
75/2 = x becuz the triangle is icoceles
=37/5
Hope this helps :) Giving me brainiest would help a lot :))
Answer:
clc%clears screen
clear all%clears history
close all%closes all files
p=250;
M=[];
for i=1:100000
re=0;
S=0;
while(S<=1)
S=S+rand;
re=re+100;
end
M(i)=re;
end
disp('Expected received money is');
mean(M)
disp('Since expcted is greater than what we pay. So, we will play')
Step-by-step explanation: