We know that angle MKJ is comprised of angle MKL and angle LKJ. That means if we add MKL and LKJ, we should get 80 degrees, which is the measure of angle MKJ.

So, we know that our x is 15. That is not enough to tell whether KL is an angle bisector, because we have to evaluate both MKL and LKJ with x=15, so:

So we see that these two angles are actually bisectors, and the third question best describes this phenomenon.
Answer:
CD = two square root of 10 end square root
Step-by-step explanation:
To find the length of a segment, use the distance formula. Substitute the order pairs for the endpoints of the segment. CD has the end points (-7, -4) and (-1, -2).

Answer:
Using c++
Check the image for colors.
Step-by-step explanation:
#include <iostream>
using namespace std;
int main()
{
float length1,length2,width1,width2,area1,area2;
cout<<"length of Rectangle 1\n";
cin>>length1;
cout<<"\nwidth of Rectangle 1\n";
cin>>width1;
cout<<"\nlenght of Rectangle 2\n";
cin>>length2;
cout<<"\nwidth of Rectangle 2\n";
cin>>width2;
area1=length1*width1;
area2=length2*width2;
if (area1<area2)
{cout << "\nRectangle 2 has greater area";}
else {
if (area1>area2)
{cout << "\nRectangle 1 has greater area";}
else {cout << "\nAreas are the same";}
}
return 0;
}
Given :
A contestant on a game show must guess the price of a new car. The contestant will win if his guess is within $1000 of the price of the car.
To Find :
If the price of the car is $24,995 and the contestant's guess is represented by g, what absolute value inequality represents this situation.
Solution :
Let, range in which participant guess would be considered correct is r.
So, r should be in range $( 24,995 ± 1000 ).
( 24,995 - 1000 ) ≤ r ≤ ( 24,995 + 1000 )
23,995 ≤ r ≤ 25,995
Therefore, the correct inequality is 23,995 ≤ r ≤ 25,995 .
Hence, this is the required solution.