Point A is at (-6,5) and point M is at (-1.5, -1).Point M is the midpoint of point A and point B.
What are the coordinates of point B?

Answers

Answer 1
Answer:

Answer: the coordinates are (3,-7)

Step-by-step explanation: just took the khan academy quiz! hope you do well loves <3

Answer 2
Answer:

Final answer:

To find the coordinates of point B, we first apply the midpoint formula, with point M as the midpoint and point A given. Solving for point B's coordinates we find they are (3, -7).

Explanation:

In order to find the coordinates of point B, we need to use the midpoint formula. The midpoint M of two points A (x1, y1) and B (x2, y2) is given as:

M = [(x1 + x2)/2 , (y1 + y2)/2].

Given that the midpoint M is (-1.5, -1) and point A is (-6,5), we can use the midpoint formula to calculate the coordinates of point B by rearranging the formula to solve for x2 and y2 (the coordinates of point B):

x2 = 2*xm - x1, y2 = 2*ym - y1.

Plugging in known values, the x-coordinate of point B (x2) = 2*-1.5 - (-6) = 3 and the y-coordinate of point B (y2) = 2*-1 - 5 = -7.

So, the coordinates of point B are (3, -7).

Learn more about Midpoint Formula here:

brainly.com/question/15085041

#SPJ3


Related Questions

I NEED HELPPP ASAPPPPP I WILL GIVE BRAINLIESTTTT!!!!!!a function is a binary relation between two sets that associates every element of the first set to exactly one element of the second set.
How to simplify 15v-9v=18
What is the point on the unit circle for the angle below?
Which statement describes this system of equations?9x – 6y = 15, 3x – 2y = 5
8 more than a number is greater than or equal to 0. Find the number. - - - - - - - - - (Although completely unnecessary, if you could explain how to write this out into an equation that would be amazing. As much as I’d appreciate an answer, it’s also be cool to know how to do it. C:)

153.8=3.14(r)squared

Answers

153.8 = 3.14r^2

Divide each side by 3.14 to get r alone.

48.9 = r^2

Take the square root of each side to isolate r.

r = 6.999

r= 7

r=12.27


153.8-3.14=150.66

150.66 square root is 12.27

A data related to air pollution in 10 U.S. cities. The dependent variable Y is the annual mean concentration of sulfur dioxide, in micrograms per cubic meter. The explanatory variable X records the number of manufacturing enterprises employing 20 or more workers. Below is Routput of the relationship between X and Y. Coefficients: Estimate Std. Error t value Pro> tl) (Intercept) 9.4764 9.6266 0.98 0.354 2.0315 0.0070 4.51 0.CO2 ** X Signif. codes: 9 ****' 0.001 ***' 0.01 **' 0.05, 0.1' '1 Residual standard error: 17.9 on 8 degrees of freedom Multiple R-squared: 0.717, Adjusted R-squared: 0.682 F-statistic: 20.3 on 1 and 8 DF, p-value: 0.00198
a) Write the regression equation with parameters from the R output.b) Suppose that the number of manufacturing enterprises employing 20 or more workers in Irvine is 250, could you predict that the annual mean concentration of sulfur dioxide in Irvine?c) What is the residual if in Irvine the annual mean concentration of sulfur dioxide is 15 micrograms per cubic meter.d) What is the value of the correlation coefficient?e) Calculate a 95% confidence interval for the slope of the model.f) Based on the confidence interval, is there a linear relationship between X and Y?

Answers

Answer:

Y = 0.0315x + 9.4764

Residual = 2.35

Correlation Coefficient = 0.847

Step-by-step explanation:

From the R output given :

Intercept = 9.4764

Slope = 0.0315

x = number of manufacturing enterprise employing 20 or more workers

y = annual mean concentration of Sulphur dioxide

The regression equation :

y = bx + c

b = slope ; c = intercept

y = 0.0315x + 9.4764

Prediction using the regression equation :

The predicted y value, when x = 250

y = 0.0315(250) + 9.4764

y = 17.3514

The residual, if actual annual concentration = 15

Y residual = 17.35 - 15 = 2.35

The correlation Coefficient value, R

R = √R²

R = √0.717

R = 0.847

Using the Breadth-First Search Algorithm, determine the minimum number of edges that it would require to reachvertex 'H' starting from vertex 'A'>

Answers

Answer:

The algorithm is given below.

#include <iostream>

#include <vector>

#include <utility>

#include <algorithm>

using namespace std;

const int MAX = 1e4 + 5;

int id[MAX], nodes, edges;

pair <long long, pair<int, int> > p[MAX];

void initialize()

{

   for(int i = 0;i < MAX;++i)

       id[i] = i;

}

int root(int x)

{

   while(id[x] != x)

   {

       id[x] = id[id[x]];

       x = id[x];

   }

   return x;

}

void union1(int x, int y)

{

   int p = root(x);

   int q = root(y);

   id[p] = id[q];

}

long long kruskal(pair<long long, pair<int, int> > p[])

{

   int x, y;

   long long cost, minimumCost = 0;

   for(int i = 0;i < edges;++i)

   {

       // Selecting edges one by one in increasing order from the beginning

       x = p[i].second.first;

       y = p[i].second.second;

       cost = p[i].first;

       // Check if the selected edge is creating a cycle or not

       if(root(x) != root(y))

       {

           minimumCost += cost;

           union1(x, y);

       }    

   }

   return minimumCost;

}

int main()

{

   int x, y;

   long long weight, cost, minimumCost;

   initialize();

   cin >> nodes >> edges;

   for(int i = 0;i < edges;++i)

   {

       cin >> x >> y >> weight;

       p[i] = make_pair(weight, make_pair(x, y));

   }

   // Sort the edges in the ascending order

   sort(p, p + edges);

   minimumCost = kruskal(p);

   cout << minimumCost << endl;

   return 0;

}

Disculpen alguien sabe de algun buen curso o tutorial para saber calculo?

Answers

Puedes ver a https://es.khanacademy.org/math/calculus-home

Circle R has a radius of line segment of QR and QP is a tangent to circle R at point Q.(Picture attached)

(a) What is the measure of RQP? Explain your answer.

(b) What is the value of x? Explain your answer with work.

(c) What is the measure of QRP? Explain your answer with work.

(d) What is the measure of RPQ? Explain your answer with work.

Answers

Answer:

(a) 90°

(b) 8.75

(c) 63.75°

(d) 26.25°

Step-by-step explanation:

(a) A radius to a point of tangency is always perpendicular to the tangent line there. Q is the point of tangency of line PQ, so the segment RQ from the center of the circle, R, to that point makes a 90° angle with PQ. Angle RQP is 90°.

(b) The sum of the acute angles of a right triangle is 90°, so ...

(5x +20)° + (3x)° = 90° . . . . . the sum of the acute angles is 90°

8x + 20 = 90 . . . . . . . . . . . . simplify, divide by °

8x = 70 . . . . . . . . . . . . . . . . . subtract 20

70/8 = x = 8.75 . . . . . . . . . . . divide by the coefficient of x

(c) ∠QRP = (5x+20)° = (5·8.75 +20)° = 63.75° . . . . . use the value of x in the expression for the angle measure

(d) ∠RPQ = (3x)° = (3·8.75)° = 26.25° . . . . . use the value of x in the expression for the angle measure

Please solve it as fast as possible​

Answers

here’s the answer, i hope this helped!