You wish to have $2000 in 3 years to buy a fancy new stereo system. How much
should you deposit each quarter into an account paying 6% compounded quarterly?

Answers

Answer 1

Answer:

The correct answer is - $1977.7913.

Step-by-step explanation:

Given:

Maturity value = 2000

time = 3 years

rate = 6% compounded quarterly

Solution:

If  A is the Maturity Value, P is the Principal Amount, r is the Rate of Return, n is the Frequency And t is the Time in Year then the Formula for Compound Interest would be -

A = P(1+r/n)^nt

Putting the given values in formula,

2000 = P*(1 + (0.06/4))^(3*4)

P = 2000/(1 + (0.06/4))^(3*4)

Thus,

P = $1977.7913


Related Questions

The side-by-side stemplot below displays the arm spans, in centimeters, for two classes.

A stemplot titled Arm Span (centimeters). For Class A, the values are 148, 151, 153, 155, 156, 159, 161, 162, 164, 165, 169, 169, 170, 171, 175, 176, 179, 179, 180, 182, 183, 186, 186, 190. For Class B, the values are 153, 155, 16, 160, 162, 162, 162, 163, 163, 165, 166, 167, 170, 173, 180, 181, 182, 189, 192, 202.

Which statement correctly compares the variability of the arm spans for Class A to that of Class B?

The arm spans for Class A have more variability than the arm spans for Class B.
The arm spans for Class B have less variability than the arm spans for Class A.
The arm spans for Class A have less variability than the arm spans for Class B.
The arm spans for Class B have about the same variability as the arm spans for Class A.

Answers

Answer:

The answer is in the picture below

Step-by-step explanation:

Sorry just realised the answers were different ;-;

Answer:

The arm spans for Class A are roughly symmetric, while those for Class B are skewed left.

Step-by-step explanation:

NO LINKS OR ANSWERING QUESTIONS YOU DON'T KNOW!! Part 2.

2. What is a determinant and what role does it play with matrices (Hint: What does a determinant of 0 mean)? How can this be used when solving systems of equations?

Answers

9514 1404 393

Explanation:

Definition

The determinant of a square matrix is a single number that is computed (recursively) as the sum of products of the elements of a row or column and the determinants of their cofactors. The determinant of a single element is the value of that element.

The cofactor of an element in an n by n matrix is the (n-1) by (n-1) matrix that results when the row and column of that element are deleted. The "appropriate sign" of the element is applied to the cofactor matrix. The "appropriate sign" of an element is positive if the sum of its row and column numbers is even, negative otherwise. (Rows and columns are considered to be numbered 1 to n in an n by n matrix.)

Uses

The inverse of a square matrix is the transpose of the cofactor matrix, divided by the determinant. Hence if the determinant is zero, the inverse matrix is undefined. This means any system of equations the matrix might represent will have no distinct solution. (There may be zero solutions, or there may be an infinite number of solutions. The determinant by itself cannot tell you which.)

Cramer's Rule for the solution of linear systems of equations specifies that the value of any given variable is the ratio of the determinants of two matrices. The numerator matrix is the original matrix with the coefficients of the variable replaced by the constants in the standard-form equations; the denominator matrix is the original coefficient matrix. This rule lets you solve a system of 3 equations in 3 variables by computing 3+1 = 4 determinants, for example.

Let's look at an example.

If we wanted to solve this system of equations

[tex]\begin{cases}2x-y = 2\\x+y = 7\end{cases}[/tex]

Then it's equivalent to solving this matrix equation

[tex]\begin{bmatrix}2 & -1\\1 & 1\end{bmatrix}\begin{bmatrix}x\\y\end{bmatrix}=\begin{bmatrix}2\\7\end{bmatrix}[/tex]

We can then further condense that into the form

[tex]Aw = B[/tex]

Where,

[tex]A = \begin{bmatrix}2 & -1\\1 & 1\end{bmatrix}\\\\w = \begin{bmatrix}x\\y\end{bmatrix}\\\\B = \begin{bmatrix}2\\7\end{bmatrix}[/tex]

------------------------------------------

To solve the matrix equation Aw = B, we could compute the inverse matrix [tex]A^{-1}[/tex] and left-multiply both sides by this to isolate w.

So we'd go from [tex]Aw=B[/tex] to [tex]w = A^{-1}*B[/tex]. The order of multiplication is important.

For any 2x2 matrix of the form

[tex]P = \begin{bmatrix}a & b\\c & d\end{bmatrix}[/tex]

its inverse is

[tex]P^{-1} = \frac{1}{ad-bc}\begin{bmatrix}d & -b\\-c & a\end{bmatrix}[/tex]

Notice the expression ad-bc in the denominator of that fractional term outside. This [tex]ad-bc[/tex] expression represents the determinant of matrix P. Some books may use the notation "det" to mean "determinant"

[tex]P^{-1} = \frac{1}{\det(P)}\begin{bmatrix}d & -b\\-c & a\end{bmatrix}[/tex]

or you may see it written as

[tex]P^{-1} = \frac{1}{|P|}\begin{bmatrix}d & -b\\-c & a\end{bmatrix}[/tex]

Those aren't absolute value bars, even if they may look like it.

Based on that, we can see that the determinant must be nonzero in order to compute the inverse of the matrix. Consequently, the determinant must be nonzero in order for Aw = B to have one solution.

If the determinant is 0, then we have two possibilities:

There are infinitely many solutions (aka the system is dependent)There are no solutions (the system is inconsistent)

So a zero determinant would have to be investigated further as to which outcome would occur.

------------------------------------------

Let's return to the example and compute the inverse (if possible).

[tex]A = \begin{bmatrix}2 & -1\\1 & 1\end{bmatrix}\\\\A^{-1} = \frac{1}{2*1 - (-1)*1}\begin{bmatrix}1 & 1\\-1 & 2\end{bmatrix}\\\\A^{-1} = \frac{1}{3}\begin{bmatrix}1 & 1\\-1 & 2\end{bmatrix}\\\\[/tex]

In this case, the inverse does exist.

This further leads to

[tex]w = A^{-1}*B\\\\w = \frac{1}{3}\begin{bmatrix}1 & 1\\-1 & 2\end{bmatrix}*\begin{bmatrix}2\\7\end{bmatrix}\\\\w = \frac{1}{3}\begin{bmatrix}1*2+1*7\\-1*2+2*7\end{bmatrix}\\\\w = \frac{1}{3}\begin{bmatrix}9\\12\end{bmatrix}\\\\w = \begin{bmatrix}(1/3)*9\\(1/3)*12\end{bmatrix}\\\\w = \begin{bmatrix}3\\4\end{bmatrix}\\\\\begin{bmatrix}x\\y\end{bmatrix} = \begin{bmatrix}3\\4\end{bmatrix}\\\\[/tex]

This shows that the solution is (x,y) = (3,4).

As the other person pointed out, you could use Cramer's Rule to solve this system. Cramer's Rule will involve using determinants and you'll be dividing over determinants. So this is another reason why we cannot have a zero determinant.

17. A hospital trauma center is going to be built equidistant from three cities. Positioned on a grid, the cities would be located at (1, 5), (2, -2), and (-6, -2). What are the coordinates of the location where the trauma center should be built? A (-2, -1) C (2, -1) B (-2, 1) D (2.1)​

Answers

9514 1404 393

Answer:

  B (-2, 1)

Step-by-step explanation:

The trauma center will be located at the circumcenter of the triangle. That is the point of intersection of the perpendicular bisectors of the sides. Once the points are graphed, it is pretty easy to see where that will be. It is on the line x=-2, above the x-axis. Only one answer choice is appropriate:

  (-2, 1)

_____

Line AC has a slope of 1. Those points are separated by 7 units horizontally and vertically, so the midpoint is 3.5 units horizontally and vertically from either point, at (-2.5, 1.5). The perpendicular line with slope -1 through that point will intersect x=2 at y=1.

Insurance companies are interested in knowing the population percent of drivers who always buckle up before riding in a car. They randomly survey 401 drivers and find that 294 claim to always buckle up. Construct a 90% confidence interval for the population proportion that claim to always buckle up. Use interval notation, for example, [1,5].

Answers

Answer:

[0.6969, 0.7695]

Step-by-step explanation:

In a sample with a number n of people surveyed with a probability of a success of [tex]\pi[/tex], and a confidence level of [tex]1-\alpha[/tex], we have the following confidence interval of proportions.

[tex]\pi \pm z\sqrt{\frac{\pi(1-\pi)}{n}}[/tex]

In which

z is the z-score that has a p-value of [tex]1 - \frac{\alpha}{2}[/tex].

They randomly survey 401 drivers and find that 294 claim to always buckle up.

This means that [tex]n = 401, \pi = \frac{294}{401} = 0.7332.

90% confidence level

So [tex]\alpha = 0.1[/tex], z is the value of Z that has a p-value of [tex]1 - \frac{0.1}{2} = 0.95[/tex], so [tex]Z = 1.645[/tex].  

The lower limit of this interval is:

[tex]\pi - z\sqrt{\frac{\pi(1-\pi)}{n}} = 0.7332 - 1.645\sqrt{\frac{0.7332*0.2668}{401}} = 0.6969[/tex]

The upper limit of this interval is:

[tex]\pi + z\sqrt{\frac{\pi(1-\pi)}{n}} = 0.7332 + 1.645\sqrt{\frac{0.7332*0.2668}{401}} = 0.7695[/tex]

The 90% confidence interval for the population proportion that claim to always buckle up is [0.6969, 0.7695]

Find the lengths of the other two sides of the isosceles right triangle

Answers

Answer:

h²=p²+b²

(7√2)²=x²+x²

(49×2)=2x²

2x²=49ײ

x²=49×2/2

x²=49

x=√49=7

x=7

OAmalOHopeO

The answer is 7 I’m quite sure

Find the arc length of the 3/4 of a circle with a radius of 5

Answers

Answer:

7.5 pi

Step-by-step explanation:

The formula for arc length of a sector is denoted as

[tex]\frac{x}{360}2\pi r[/tex], where x is the central angle of the sector.

Since the sector is 3/4 of a circle, the central angle will be 3/4 of 360 degrees.

3/4 of 360 is 270, so we have our central angle. We also have our radius which we can plug into the formula.

[tex]\frac{270}{360}2(5)\pi[/tex]

2 times 5 is equal to 10, and 270/360 simplifies to 3/4. 3/4 times 10 is equal to 7.5, so the answer is 7.5 pi

Write the solution for x+5≤8 x + 5 ≤ 8 in set notation

Answers

9514 1404 393

Answer:

  {x ∈ ℝ | x ≤ 3}

Step-by-step explanation:

Subtracting 5 from both sides, we see the solution is ...

  x ≤ 3

In set notation, this can be written ...

  {x ∈ | x ≤ 3}

Help please, but more importantly, I am really trying hard to figure out how, you arrive at the answer. Thanks in advance!

A recent social survey asked respondents whether they like Apple or Microsoft. The responses were recorded in the following table.

Male Female Total
Apple 152 194 346
Microsoft 168 126 294
Total 320 320 640
a. A respondent is randomly selected among those that prefer Apple, what is the probability that the respondent will be female?

b. A respondent is randomly selected among those that are Male, what is the probability that the respondent prefers Apple?

c. What is the relative frequency of a female who prefers Microsoft?ocial survey asked respondents whether they like Apple or Microsoft. The responses were recorded in the following table.

Male Female Total
Apple 152 194 346
Microsoft 168 126 294
Total 320 320 640
a. A respondent is randomly selected among those that prefer Apple, what is the probability that the respondent will be female?

b. A respondent is randomly selected among those that are Male, what is the probability that the respondent prefers Apple?

c. What is the relative frequency of a female who prefers Microsoft?

Answers

Answer:

Step-by-step explanation:

#1

A) P(FEMALE|APPLE)

apple total = 346

apple/female = 194

194/346 = .56 = 56 %

B) P(APPLE|MALE)

male total = 320

apple male = 152

152/320 = .475 = 47.5%

C) female prefer Microsoft

152:168 = 76:84 = 38:42 = 19:21

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

a fair coin is flipped. if the flip results in a head, then a fruit is selected from a basket containing 8 apples, 2 bananas, and 6 cantaloups. if the flip results in a tail, then a fruit is selected from a basket containing 6 apples and 4 bananas. what is the probability that the flip resulted in tails, given that the fruit selexted is a banana g

Answers

Solution :

We have given two baskets :

[tex]$H_1$[/tex] : 8 apples + 2 bananas + 6 cantaloupes = 16 fruits

[tex]$H_2$[/tex] : 6 apples + 4 bananas = 10 fruits

A fair coin is made to flipped. If the [tex]\text{flip}[/tex] results is head, then the fruit is selected from a basket [tex]$H_1$[/tex].

If the flip results in tail, then the fruit is selected from the basket [tex]$H_2$[/tex].

Probability of head P(H) = [tex]1/2[/tex]

Probability of tail P(T) = [tex]1/2[/tex]

if given event is :

B = selected fruit is BANANA

We have to calculate : P(T|B)

Probability of banana if the flip results is head P(B|H) = [tex]$\frac{2}{16}$[/tex]

Probability of banana if the flip results is tail P(B|T) = [tex]$\frac{4}{10}$[/tex]

From the Bayes' theorem :

Probability of flip results is tail when selected fruit is BANANA.

[tex]$P(T|B) = \frac{P(B|T)\ P(T)}{P(B|T) \ P(T) + P(B|H)\ P(H)}$[/tex]

            [tex]$=\frac{\frac{4}{10} \times \frac{1}{2}} {\frac{4}{10} \times \frac{1}{2} + \frac{2}{16} \times \frac{1}{2}}$[/tex]

            [tex]$=\frac{\frac{1}{5}}{\frac{1}{5}+\frac{1}{16}}$[/tex]

            [tex]$=\frac{\frac{1}{5}}{\frac{21}{80}}$[/tex]

            [tex]$=\frac{16}{21}$[/tex]

∴  [tex]$P(\ T|B\ )=\frac{16}{21}$[/tex]

a group of workers can plant 3/5 acres in 5/6 days. what is the unit rate per day?

Answers

Answer:

Workers can plant 0.72 acres per day.

-1/5y+7=7
What is the value of y?

Answers

The answer is y=0

See the attached photo for details

Hope this helps! Please make me the brainliest, it’s not necessary but appreciated, I put a lot of effort and research into my answers. Have a good day, stay safe and stay healthy.

John borrowed a certain amount of money from Tebogo at a simple interest rate of 8,7% per year. After five years John owes Tebogo R10 000.Calculate how much money John initially borrowed​

Answers

Calculation of the princ ipal loan amount:-

Amount = Principal (1 + Rate X Time).

R1000,000 = P (1 + 0.087 X 5).

R1, 000,000 = P (1 + 0.435).

Principal loan
=
R
1000
,
000
1.435
=
1.435
R1000,000



Principal loan = R696,864.11.

For each kilogram of a persons weight 2.5 milligrams of a drug is to be given. what dosage should be given to a child who weighs 84 pounds? Use the fact that 1 lb = 0.45 kg

Answers

Answer:

A child who weighs 84 pounds should be given 94.5 milligrams of the drug.

Step-by-step explanation:

Givens:

1kg=2.5 milligrams of dosage

Weight of child = 84 pounds

1 pound = 0.45 kg

Solution:

Convert pounds to kilograms --> 84lbs*0.45kg = 37.8 kg

Convert weight to dosage --> 37.8kg * 2.5 mg = 94.5 mg of dosage.

Which of the following fractions is closest to 0? 5/12 , 2/3, 5/6,3/4

Answers

Answer:

5/12

Step-by-step explanation:

5/12 , 2/3, 5/6,3/4

Get a common denominator of 12

5/12, 2/3 *4/4, 5/6*2/2, 3/4 *3/3

5/12, 8/12, 10/12, 9/12

The numerator closest to 0 is the fraction closest to 0

5/12

PLEASE HELP THIS IS DUE ASAP (answer in decimal!!!!)

Answers

Your answer should be 0.14

The lengths of two sides of the right triangle ABC shown in the illustration given

a= 7cm and b= 24cm

Answers

Answer:

25 cm.

Step-by-step explaination:

Given,

Two sides of a triangle:

a = 7cm

b = 24 cm

To find,

Third side:

c = ?

By Pythagorean Theorem;

a² + b² = c²

[where c is the longest side,hypotenuse]

Putting the value of a and b;

we get,

7² + 24² = c²

49 + 576 = c²

625 = c²

25² = c² (square root)

25 = c

c = 25

Therefore, the length of the third side will be equal to 25 cm.

Question:-

The lengths of two sides of the right triangle ABC shown in the illustration given

a= 7cm and b= 24cm

Given,

> a= 7cm

> b= 24cm

To find?

Side c (third side)

Solution:-

Using Pythagoras theorem,

▶️ a² + b² = c

▶️ 7cm ² + 24cm² = c²

▶️ 49cm + 576cm = c²

▶️ 625cm = c²

▶️ 25² = c² (25×25 = 625)

▶️ c = 25

The value of c is 25 cm.

Find the circumference of the circle.
10.1 in
Hint: C = xxd
x= 3.14




A.15.857 in
B.31.714 in
C.63.428 in
D.13.24 in

Answers

Step-by-step explanation:

c=3.14×3.14×10.1

=99.58196

Find the equation of the line passing through the point (-1,2)
and the points of intersections of the line 2x - 3y + 11 = 0 and
5x + y + 3 = 0​

Answers

Answer:

[tex]y=-5x-3[/tex]

Step-by-step explanation:

Hi there!

What we need to know:

Linear equations are typically organized in slope-intercept form: [tex]y=mx+b[/tex] where m is the slope and b is the y-intercept (the value of y when x is 0).

To solve for the equation of the line, we would need to:

Find the point of intersection between the two given linesUse the point of intersection and the given point (-1,2) to solve for the slope of the lineUse a point and the slope in [tex]y=mx+b[/tex] to solve for the y-interceptPlug the slope and the y-intercept back into [tex]y=mx+b[/tex] to achieve the final equation

1) Find the point of intersection between the two given lines

[tex]2x - 3y + 11 = 0[/tex]

[tex]5x + y + 3 = 0[/tex]

Isolate y in the second equation:

[tex]y=-5x-3[/tex]

Plug y into the first equation:

[tex]2x - 3(-5x-3) + 11 = 0\\2x +15x+9 + 11 = 0\\17x+20 = 0\\17x =-20\\\\x=\displaystyle-\frac{20}{17}[/tex]

Plug x into the second equation to solve for y:

[tex]5x + y + 3 = 0\\\\5(\displaystyle-\frac{20}{17}) + y + 3 = 0\\\\\displaystyle-\frac{100}{17} + y + 3 = 0[/tex]

Isolate y:

[tex]y = -3+\displaystyle\frac{100}{17}\\y = \frac{49}{17}[/tex]

Therefore, the point of intersection between the two given lines is [tex](\displaystyle-\frac{20}{17},\frac{49}{17})[/tex].

2) Determine the slope (m)

[tex]m=\displaystyle \frac{y_2-y_1}{x_2-x_1}[/tex] where two points that fall on the line are [tex](x_1,y_1)[/tex] and [tex](x_2,y_2)[/tex]

Plug in the two points [tex](\displaystyle-\frac{20}{17},\frac{49}{17})[/tex] and (-1,2):

[tex]m=\displaystyle \frac{\displaystyle\frac{49}{17}-2}{\displaystyle-\frac{20}{17}-(-1)}\\\\\\m=\displaystyle \frac{\displaystyle\frac{15}{17} }{\displaystyle-\frac{20}{17}+1}\\\\\\m=\displaystyle \frac{\displaystyle\frac{15}{17} }{\displaystyle-\frac{3}{17} }\\\\\\m=-5[/tex]

Therefore, the slope of the line is -5. Plug this into [tex]y=mx+b[/tex]:

[tex]y=-5x+b[/tex]

2) Determine the y-intercept (b)

[tex]y=-5x+b[/tex]

Plug in the point (-1,2) and solve for b:

[tex]2=-5(-1)+b\\2=5+b\\-3=b[/tex]

Therefore, the y-intercept is -3. Plug this back into [tex]y=-5x+b[/tex]:

[tex]y=-5x+(-3)\\y=-5x-3[/tex]

I hope this helps!

GIVING 25 POINTS AND BRAINIER IF ANSWERED!

What is one thing you would not do when finding the question in a word problem?
A. Look for a problem similar to the word problem you are trying to solve.
B. The question may not be directly stated.
C. So you can understand what the facts are in the word problem.
D. To define your strategy or game plan to solve the word problem.

Answers

The answer to your question is A

Answer:

B. The question may not be directly stated.

Find the value of each determinant

Answers

Answer:

−4304

Step-by-step explanation:

1. The given determinant is :

[tex]\begin{vmatrix}7 &31 \\ 142& 14\end{vmatrix}[/tex]

We need to find its determinant . It can be solved as follows :

[tex]\begin{vmatrix}7 &31 \\ 142& 14\end{vmatrix}=7(14)-142(31)\\\\=-4304[/tex]

So, the value of determinant is equal to −4304.

Answer:

A= -4269

B= 1768

C= 647.36

Step-by-step explanation:

(B) An airline knows from experience that the distribution of the number of suitcases that get lost each week on a certain route is normal with μ (mean) = 15.5 and σ (standard deviation) = 3.6. What is the probability that during a given week the airline will lose between 11 and 19 suitcases?

Answers

Answer:

The correct answer is "0.7289".

Step-by-step explanation:

The given values are:

Mean,

[tex]\mu = 15.5[/tex]

Standard deviation,

[tex]\sigma = 3.6[/tex]

As we know,

⇒ [tex]z = \frac{(x - \mu)}{\sigma}[/tex]

The probability will be:

⇒ [tex]P(11< x< 19) = P(\frac{11-15.5}{3.6} <z<\frac{19-15.5}{3.6})[/tex]

                             [tex]=P(z< 0.9722)-P(z< -1.25)[/tex]

By using the z table, we get

                             [tex]=0.8345-0.1056[/tex]

                             [tex]=0.7289[/tex]

I need to know the answer ASAP thank you

Answers

Answer:

Step-by-step explanation:

Find the range of the function represented by the list of ordered pairs below.
{(−9,4),(−6,3),(−3,0),(−2,−4)}

Answers

Answer:

(4,3,0,-4)

May this

help you

Which graph shows the quadratic function y = 3x2 + 12x + 10? (5 points)

The following graph is labeled A: A four quadrant graph with a parabola opening up, passing through the points negative 3, 1, negative 2, negative 2, and negative 1, 1 with the vertex at 2, negative 2. The following graph is labeled B: A four quadrant graph with a parabola opening up, passing through the points 1, 4, 2, 1, and 3, 4 with the vertex at 2, 1. The following graph is labeled C: A four quadrant graph with a parabola opening up, passing through the points negative 3, 5, negative 2, 2, and negative 1, 5 with the vertex at negative 2, 2. The following graph is labeled D: A four quadrant graph with a parabola opening up, passing through the points 1, 1, 2, negative 2, and 3, 1 with the vertex at 2, negative 2.

Answers

Answer:

The correct graph is A.

Answer:

A i got it right

Step-by-step explanation:

Measure and record the lengths of the sides of ABC and FGH.

Answers

Answer:

can you please send the picture of the diagram.

Step-by-step explanation:

Answer:

ABC:

AB-5 units

BC-12.65 units

AC-15 units

FGH:

FG-5 units

GH-12.65 units

FH-15 units

Step-by-step explanation:

PLATO SAMPLE ANSWER

here's a graph of a linear function write the equation that describes the function express it in slope-intercept form

Answers

Answer:

y = 3/4 x - 3

Step-by-step explanation:

the slope of a line is the factor of x in the equation and is expressed as ratio of y/x : defining how many units y changes, when x changes a certain number of units.

in our graph here we can see that when increasing x from e.g. 0 to 4 (the x-axis intercept point, a change of +4), y changes from -3 to 0 (a change of +3).

so, the slope and factor of x is y/x = 3/4

and for x=0 we get y=-3 as y-axis intercept point.

so, the line equation is

y = 3/4 x - 3

Some friends are sharing a pizza. If each person gets 1/8 of the pizza, what percent of the pizza does each person get?

Answers

Answer:

1/8=12.50%

Step-by-step explanation:

Take the pizza as a whole = 100

Then consider 1/8 of 100

or   1/8 * 100  

= 1/4 * 50

=   1/2 * 25

= 12.50

Therefore it is 12.50%

We can solve this by dividing 1/8 since each friend gets 1/8 of the pizza. 1/8 gives us 0.125 as a decimal. After we convert that to a percentage, we will get 12.5 or 12. 50%. You can get the percentage by multiplying 0.125*100.

Plz help me i need this question solution

Answers

Answer:

your mom

Step-by-step explanation:

In the figure, ∆BAT ≅ ∆CAT. Which statement is not true by CPCTC? ∠BTA ≅ ∠CTA ∠BAT ≅ ∠CAT

Answers

Answer:

Both are true.

Step-by-step explanation:

x^{2} +y^{2} =?
cho mình hỏi với

Answers

Answer:

[tex]{ \sf{ {x}^{2} + {y}^{2} = {(x + y)}^{2} - 2xy }}[/tex]

Step-by-step explanation:

[tex]{ \tt{ {(x + y)}^{2} = (x + y)(x + y) }} \\ { \tt{ {(x + y)}^{2} = ( {x}^{2} + 2xy + {y}^{2}) }} \\ { \tt{( {x}^{2} + {y}^{2} ) = {(x + y)}^{2} - 2xy}}[/tex]

Other Questions
what is photosynthesis Explain about Photosynthesis . ? Which of the following ions is the less likely to be formed?A) Li+3B) Na+C) I-D) Sr2+) + A company's overhead rate is 60% of direct labor cost. Using the following incomplete accounts, determine the cost of direct materials used.Goods in process inventory:Beginning balance $100,800D.M.D.L.O.H. F.G.Ending balance $131,040 A bag contains five white balls and four black balls. Your goal is to draw two black balls. You draw two balls at random. What is the probability that they are both black Find the value of x.A. 31B. 25C.5D. 11 Evaluate the extent to which federal policies and court decisions in the 1960s reflected liberal ideals. Provide specific evidence to justify your answer. We know that water is purified before it is supplied to our houses. Then why do we have filters installed in our houses? What do they serve? How might a country become a world leader? The potential difference between the plates of a capacitor is 234 V. Midway between the plates, a proton and an electron are released. The electron is released from rest. The proton is projected perpendicularly toward the negative plate with an initial speed. The proton strikes the negative plate at the same instant the electron strikes the positive plate. Ignore the attraction between the two particles, and find the initial speed of the proton.I have tried looking at the cramster.com solution manual and do not like the way it is explained. Simply put, I cannot follow what is going on and I am looking for someone who can explain it in plain man's terms and help me understand and get the correct answer. I am willing to give MAX karma points to anyone who can help me through this. Thank you kindly. whats the name of the organic molecule find the measure of the indicated angle to the nearest degree A tone is the expression of the writer's attitude.TrueFalse Adam runs 13 miles in 143 minutes. How many minutes does it take him to run one mile? Adam runs at a rate of minutes per mile. 174 multiply by 175 I need help for this question 3 so can anyone help me please Help me solve this please Im struggling Gina charges an initial fee and an hourly fee to babysit. Using the table below find the hourly fee and the initial fee thatGina charges to babysit. Show work. 4. Which of the following are extra senses that vertebrates may have? (Choose all that apply)magnetoreceptionproprioceptionbaroceptiono nociception Which image would have the highest resolution.?A283 pixelsB787 pixelsC1181 pixelsD3150 pixels