Complete the program so that it takes in 4 integers (a, b, c, and d) as arguments, stores them in the 2D array nums, and then prints their row, column, and total sums. The program should print the integers according to this formula:
(a) (b) (a+b)
(c) (d) (c+d)
(a+c) (b+d) ((a+b)+(c+d)+(a+c)+(b+d))
// (a+b) is the first row's sum
// (c+d) is the second row's sum
// (a+c) is the first column's sum
// (b+d) is the second column's sum.
// ((a+b)+(c+d)+(a+c)+(b+d)) is the total sum of all rows and columns

Answers

Answer 1

The program should print the integers according to this formula is

nums[0][0]=a;

nums[0][1]=b;

nums[1][0]=c;

nums[1][1]=d;

nums[0][2]= nums[0][0] + nums[0][1]; //a+b

nums[1][2]= nums[1][0] + nums[1][1]; //c+d

nums[2][0] = nums[0][0] + nums[1][0]; //a+c

nums[2][1] = nums[0][1] + nums[1][1]; //b+d

//sum = (a+b) + (c+d) + (a+c) + (b+d)

nums[2][2] = nums[0][2] + nums[1][2] + nums[2][0] + nums[2][1];

The nums array is 2 dimensional as shown below.

row, column column 0 column 1 column 2

row 0 a b a+b

row 1 c d c+d

row 2 a+c b+d (a+b)+(c+d)+(a+c)+(b+d)

The first index of an array always starts from 0.

Thus, nums[rows][columns] is used to access each element of the array.

The sum of first row elements is to be stored in the last index of row0, that is in nums[1][2].

Thus we equate nums[0][2] = nums[0][0] + nums[0][1]

Similarly, for 2nd row; nums[1][2] = nums[1][0] + nums[1][1]

The sum of first column is to be stored in last index of column0.

Thus, nums[2][0] = nums[0][0] + nums[1][0]

and for 2nd column,

nums[2][1] = nums[0][1] + nums[1][1].

Thus, the answer is--  

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

nums[0][0]=a;

nums[0][1]=b;

nums[1][0]=c;

nums[1][1]=d;

nums[0][2]= nums[0][0] + nums[0][1]; //a+b

nums[1][2]= nums[1][0] + nums[1][1]; //c+d

nums[2][0] = nums[0][0] + nums[1][0]; //a+c

nums[2][1] = nums[0][1] + nums[1][1]; //b+d

//sum = (a+b) + (c+d) + (a+c) + (b+d)

nums[2][2] = nums[0][2] + nums[1][2] + nums[2][0] + nums[2][1];

To learn more about  program visit:https://brainly.com/question/11023419

#SPJ4


Related Questions

The diameter, d, of the circle below is 77 cm.
What is the circumference of the circle?
Give your answer to 1 d.p.
77 cm
circumference = nd

Answers

Answer:

C ≈ 241.9 cm

Step-by-step explanation:

the circumference (C) of the circle is calculated as

C = πd ( d is the diameter )

here d = 77 , then

C = π × 77 ≈ 241.9 cm ( to 1 dec. point )

does someone mind helping me with this question? Thank you!

Answers

Answer:

50,000

Step-by-step explanation:

1,750 x 2 = 3,500

25,000 x 2 = 50,000

a right triangle's height is 5 times the length of its base. if the area of the triangle is 160, what is its height?

Answers

If a right triangle's height is 5 times the length of its base and the area of the triangle is 160, then the height of the triangle is 40 units

A right triangle's height is 5 times the length of its base

Consider the length of the base as b and the height as h

h = 5b

The area of the triangle = 160 square units

The area of the triangle = 1/2 × b × h

Where b is the base of the triangle

h is the height of the triangle

Substitute the values in the equation

1/2 × b × h = 160

1/2 × b × 5b = 160

1/2 ×5b^2 = 160

5b^2 = 320

b^2 = 320/5

b^2 = 64

b = [tex]\sqrt{64}[/tex]

b = 8 units

Then the height of the triangle h = 5b

= 5 × 8

= 40 units

Therefore, the height of the triangle is 40 units

Learn more about area of the triangle here

brainly.com/question/19305981

#SPJ4

The following information was collected from a simple random sample of a population. 9 13 15 15 21 24 The point estimate of the population standard deviation is Select one: O a. 59.1. O b. 7.688. O C. 7.018. O d. 49.25.

Answers

The point estimate of the population standard deviation is Select one is 5.4558.

Given data

9,13,15,15,21,24

We have to find first mean

Here n=6

[tex]$\begin{aligned} \text { mean } \bar{x} & =\frac{\sum x_i}{n} \\ & =\frac{9+13+15+15+21+24}{6} \\ & =\frac{97}{6} \\ & =16.166\end{aligned}$[/tex]

[tex]$\therefore$[/tex] Standard deviation

[tex]S=\sqrt{\frac{\sum\left(x_i-x\right)^2}{n-1}}$$[/tex]

S= root (9-16.(66)^2+(13-16.166)^2+(15-16.166)^2+(15-16.166)^2+(21-16.166)^2+(25- 16.166)^2/(6-1)

[tex]\begin{aligned}& =\sqrt{\frac{148.833336}{5}} \\& =\sqrt{29.7666} \\& =5.4558\end{aligned}[/tex]

To learn more about Standard deviation visit:

https://brainly.com/question/13905583

#SPJ4

Answer:

Step-by-step explanation:

b) 7.688 The point estimate of the population standard deviation is 7.688. The point estimate of a population parameter is the estimate of the population parameter based on a single sample. In this case, the point estimate of the population standard deviation is the sample standard deviation, which is a measure of the spread or variability of the sample data. To calculate the sample standard deviation, we need to first calculate the sample mean, which is the average of the values in the sample. In this case, the sample mean is (9 + 13 + 15 + 15 + 21 + 24)/6 = 14.5. We can then use this value to calculate the sample standard deviation, which is √(((9-14.5)² + (13-14.5)² + (15-14.5)² + (15-14.5)² + (21-14.5)² + (24-14.5)²)/6) = 7.688. This is the point estimate of the population standard deviation. The other answer choices are not the sample standard deviation.

The figure is made up of a cone and a cylinder.

To the nearest whole number, what is the volume of this figure?

Use 3.14 to approximate π . Round only your final answer to the nearest whole number.



Enter your answer in the box.

Answers

The volume of the composite shape is 38mm³(nearest whole number)

What is a composite solid?

A composite shape can be defines as a shape created with two or more basic shapes. We often refer to composite shapes as compound and complex shapes.

The volume of a the composite solid above = volume of cone + volume of cylinder

volume of cone = 1/3πr²h

=1/3×3.14×2²×3

= 12.56mm³

volume of the cylinder = πr²h

= 3.14×2²×2

= 25.12mm³

therefore the volume of the shape = 12.56+25.12

= 37.68mm³

= 38mm³( nearest whole number)

learn more about composite shape from

https://brainly.com/question/26642678

#SPJ1

expected counts 153 94.5 63 49.5 45 45 enter the test statistic - round to 4 decimal places. test statistic

Answers

On solving the provided question, we got that - 0.000005178 as the P-value,the null hypothesis is a common statistical theory that contends that no statistical relationship

How do you define a null hypothesis?

Using a single observed variable to compare two sets of observed data and measured phenomena, the null hypothesis is a common statistical theory that contends that no statistical relationship and significance exists.

h0; no change in beverage preferences

h1: alterations in drink preferences

alpha = 0.05

We find the test statistics' solution.

The attachment underwent the chsquare test.

Chi-square: (O-E)2/E

Chi square is 32.30188.

[tex]number of degrees of freedom = n-1 = 6-1 = 5[/tex]

I determined the p value using the chi distribution tool in Excel.

CHIDIST(3.20188, 5) =

0.000005178 as the P-value

We reject the null hypothesis since the pvalue is less than 0.05 and come to the conclusion that there is enough evidence to support the shift in drink preferences.

To know more about null hypothesis visit:
https://brainly.com/question/28920252

#SPJ4

20 chairs at four tables equals how many chairs per table

Answers

Answer:

5 chairs per table.

Step-by-step explanation:

let n be a positive integer and suppose n distinct lines are drawn in the plane. no two of these lines are parallel, and no three of these lines intersect at a common point. prove that these lines divide the plane into n 0 c n 1 c n 2 regions.

Answers

There are 0 lines, 1 regions, and no line junctions. There are always k+1k+1 regions and kk intersections added whenever a line is added and crosses k other lines.

Another perspective is that k+1k+1 areas are added for each line and k intersections added (the number of added lines and intersections).Consequently, the total number of regions is 1 plus the sum of the number of lines and junctions.The number of intersections is 1 + the number of lines. There are (n2) (n2) crossovers with nn lines (if no two lines are parallel and no three lines are coincident). Therefore, there are (n2) +n+1=n(n1)/2+n+1=n2+n+2/2 areas instead of (n2) +n+1=n(n1)/2+n+1=n2+n+2/2).

Learn more about intersection here

https://brainly.com/question/14217061

#SPJ4

the regression equation netincome = 2,277 + .0307 revenue was estimated from a sample of 100 leading world companies (variables are in millions of dollars). (a-1) calculate the residual for the x, y pair ($41,078, $8,301).

Answers

From a sample of 100 leading world companies we can estimate the residual value is 4,762.9054 .

It is given that,

Regression equation net income = 2277+0.0307

From a sample of 100 leading world companies we can estimate the revenue.

(a-1)

for the (x,y) pair, x = $41,078 and y = $8,301 or it is represented as ($41,078 , $8,301)

then the above (x,y) pair's residual value is e = y - ÿ

ÿ = 2277+0.307x

= 2277+0.0307(41078)

= 2277+1261.0946

= 3538.0946

Thus, e = y - ÿ

so, e = 8301 - 3538.0946

= 4762.9054

Hence, the residual value = 4,762.9054                                                                                  

To calculate the correlations between a dependent variable and one or more independent variables, a statistical technique grouping together several statistical techniques known as regression analysis is utilized. Revenue is the entire amount of money received from the sale of goods or services related to a company's main operations. Revenue, also known as gross sales, is often referred to as the "top line" because it appears at the top of the income statement. The residual value, also known as salvage value, is the estimated value of a fixed asset at the end of its useful life or lease term.

To learn more about residual value: https://brainly.com/question/16180255

#SPJ4

in order to calculate the correlation between two variables related to the same sample what do you need to calculate first?

Answers

In order to calculate the correlation between two variables related to the same sample you need to calculate first the mean of each variable.

Before determining the correlation, the covariance of the two variables in the issue must always be computed. The standard deviation of each variable is then needed. The correlation analysis is calculated by dividing the covariance even by combination of a standard deviations of two or more variables.

A correlation is a statistical measurement of the two-variable connection. The measure works best with parameters that have a linear connection with one another.

The degree of the relationship between two variables is examined using correlation. To get the correlation between two variables, divided the covariance value by the standard deviation of both variables. Correlation analysis for two variables in the same sample should be performed. If you run a survey with two factors, a responder should be able to answer both variables at a glance. Furthermore, other participants' replies to the parameter might be evaluated for a correlation test.

Learn more about correlation analysis here:https://brainly.com/question/28175782

#SPJ4

In triangle def, m∠d = (2x 19)°, m∠e = (3x 24)°, and m∠f = 87°. determine the degree measure of the exterior angle to ∠d. 54° 39° 141° 126°

Answers

Each corner of a triangle can form an exterior angle of the triangle by extending one side of the triangle. As we can see in above picture, where 'w' is exterior angle of angle 'z'.

The measure of the exterior angle to ∠d is 126°. So, the correct option is option (D).

We have given that,

A DEF such that m∠d = (2x + 19)°,

m∠e = (3x + 24)°, and m∠f = 87°.

we have to find out the degree measure of the exterior angle to ∠d.

As we know that sum of angles of triangle is equal to 180° .

so, m∠d + m∠e + m∠f = 180°

=> (3x + 24)° + (2x + 19)° + 87° = 180°

=> (5x + 24 + 19 + 87)° = 180°

=> 5x + 130° = 180°

=> 5x = 50°

=> x = 10°

plug this value in angle d , angle e we get ,

m∠d = (3 ×10 + 24 )° = 54°

We can see that adding the angle measurement d and the exterior angle measurement gives d = 180 degrees. This is because they are a pair of adjacent angles and both lie on a straight line.

measure of Exterior angle of ∠d + measure of ∠d = 180°

Measure of exterior angle of ∠d

= 180° - m∠d

= 180° - 54° = 126°

Hence, the measure of exterior angle of d is 126°.

To learn more about exterior angle, refer:

https://brainly.com/question/29125448

#SPJ4

let x and y be i.i.d. unif(0, 1). (a) compute the covariance of x y and x −y. (b)arex y andx−y independent?

Answers

⇒ Yes X+Y and X-Y are independent

What is covariance?

Covariance is a measure of the combined variability of two random variables used in probability theory and statistics. The covariance is positive if the greater values of one variable primarily match the greater values of the other variable, and the same is true for the lesser values.

Define U=X+Y,  V=X−Y

Then, [tex]x=\frac{(U+V)}{2}[/tex], and

[tex]Y=\frac{(U-V)}{2}[/tex]

Find the Jacobian J for the transformation.

Then, fU,V(u,v)= fX(x=(u+v)/2) fY(y=(u−v)/2)|J|

You will find that fU,V(u,v) factors into a function of u alone and a function of v alone. Thus, by the Factorization thm, U and V are independent.

b) Yes X+Y and X-Y are independent

a) Since , X+Y and X-Y are independent,

COV(X+Y , X-Y) = 0 Answer

Cov(X+Y , X-Y) = 0

b)

Yes these are independent

Learn more about covariance link below

https://brainly.com/question/28135424

#SPJ4

Need help, please!

Is a^+b^6 = (a²+b²)(a^4-a²b^2+b^4) an identity? Explain or show your reasoning.

Answers

Expression a⁶ + b⁶ = (a² + b²)(a⁴ - a²b² + b⁴)   is an identity, by left-hand term and right-hand term property.

What is an algebraic expression?

An algebraic expression is consists of variables, numbers with various mathematical operations,

The given expression is,

a⁶ + b⁶ = (a² + b²)(a⁴ - a²b² + b⁴)  

To prove that the given expression is an identity,

Solve left-hand term,

Substitute a² = x, b² = y

a⁶ + b⁶

= x³ + y³

Use formula x³ + y³ = (x + y)(x²  - x y + y²)

= (x + y)(x²  - x y + y²)

Again substitute x = a², y = b², expression will be,

= (a² + b²)(a⁴ - a²b² + b⁴)  

Hence, a⁶ + b⁶ =  (a² + b²)(a⁴ - a²b² + b⁴)  

To know more about Algebraic expression on:

https://brainly.com/question/19245500

#SPJ1

Is 700% of 6 less than 10,greater than 10 but less than 100,or greater than 100?

Answers

Greater than 100. 700% of 6 is 42.

please
help I will give brainly

Answers

The distance AC to be covered for the given triangle will be  429.94 meters.

What is a triangle?

A triangle is a closed, 2-dimensional shape with 3 sides, 3 angles, and 3 vertices.

Triangle is a very common figure to deal with our daily life for example in our daily life to measure the height of any tower then there is a huge application of the right angle triangle.

As per the given triangle,

By cosine law,

Cos∠ABC = (220² + 430² - AC²)/(2 × 220 × 430)

Cos∠ABC = (233300 - AC²)/189200

Cos(180° - 75°) = (233300 - AC²)/189200

(233300 - AC²) = -48968.56

AC² = 184331.4367

AC = 429.94 meter

Hence "The distance AC to be covered for the given triangle will be  429.94 meters".

For more information about triangles,

https://brainly.com/question/2773823

#SPJ1

Without graphing or plugging in any values, enter a point that lies on y – 5 = 2(x + 9).

Answers

For the given equation, y – 5 = 2(x + 9) the line passes through (5,-9).

What is a linear equation?

It is defined as the relation between two variables, if we plot the graph of the linear equation we will get a straight line.

If in the linear equation, one variable is present, then the equation is known as the linear equation in one variable.

It is given that, the equation of the line is

y – 5 = 2(x + 9)

Compare the equation with the standard equation as

y-y₁=m(x-x₁)

y – 5 = 2(x + 9).

y-5=2(x-(-9)

Where x₁ and y₁ are the points on which the line lies.

Thus, for the given equation, y – 5 = 2(x + 9) the line passes through (5,-9).

Learn more about the linear equation here:

brainly.com/question/11897796

#SPJ1

PLS HELP!!! I really need help!

Use substitution to solve the system.

5x + 4y = 9
-2x + y = -14

Answers

Answer:

x=9/5 − 4y/5

x = 7 + y/2

Step-by-step explanation:

Move all terms that don't contain x to the right side and solve.

i need help asap !!!!!!

Answers

Answer: A and C is incorrect, the middle is 14. The minimum is 13. The max is 16.

Step-by-step explanation: B is correct

there is no 12

12 is 30% of what number?

Answers

Answer: 3.6

Step-by-step explanation:

Step 1:  30/100 = x/12

Step 2: Multiply 12x30 and then divide it by 100

louisa walks from her school 40 feet south and then walks 100 feet east. what is the shortest distsnce louisa is from her school? round to the nearest tenth

Answers

The shortest distance Louisa is from her school is 107.7 feet

How to determine the shortest distance from her school?

From the question, we have the following parameters that can be used in our computation:

East = 100 feet

South = 40 feet

The shortest distance from her school is calculated using the following theorem

Shortest distance = √(East² + South²)

Substitute the known values

Shortest distance = √(100² + 40²)

Evaluate

Shortest distance = 107.7

Hence, the shortest distance = 107.7 feet

Read more about pythagoras theorem at

https://brainly.com/question/343682

#SPJ1

I need help with a linear equation.

Answers

The slope (-8) of the linear equation that is represented by the table, is the amount Austin pays each week, which is $8.

What is the Slope of a Linear Equation?

A linear equation which is given as y = mx + b, has a slope value which represents the change in y over a change in x and is given by the value of m in the linear equation.

If a table is said to represent a linear equation, the slope of the linear equation, which can also be called the unit rate, can be found by using two pairs of values from the table to calculate the change in y over the change in x.

Given that the table above represents a linear equation where L is dependent on the value of t, it means that slope of the linear equation represents the amount Austin paid back each week.

Find the slope using two points, (2, 24) and (4, 8):

Slope (m) = (24 - 8) / (2 - 4)

m = 16/-2

m = -8

Therefore, this means that Austin pays $8 every week.

Learn more about the linear equation on:

https://brainly.com/question/2030026

#SPJ1

mary lee's natural food store sells a combination of teas. the most popular is a mixture of a tea that sells for per pound with one that sells for per pound. if she needs of tea that will sell for per pound, how many pounds of each tea should she use?

Answers

She may thus combine 21 pounds of tea priced at $3 and 14 pounds of tea priced at $2 to create tea that costs $2.6 per pound.

What is expression?

An expression, often known as a mathematical expression, is a finite collection of symbols that are well-formed in accordance with context-dependent principles. Mathematical expressions consist of at least two numbers or variables, at least one arithmetic operation, and a statement. It's possible to multiply, divide, add, or subtract with this mathematical operation. An expression's structure is as follows: (Number/variable, Math Operator, Number/variable) is an expression.

Here,

Let 3x be the pounds of tea for $3 and 2x be the pounds of tea for $2.

Total required pounds=35

3x+2x=35

x=35/5

x=7

So, She can add 21 pounds of tea for $3 and 14 pounds of tea for $2 to make the tea that is $2.6 per pound.

To know more about expression,

https://brainly.com/question/1859113

#SPJ4

21 out of 300 equals what percent

Answers

Answer : 21 out of 300 would equal 7%

Answer:

7%

Step-by-step explanation:

When trying to figure out percentages, we can try to use a proportional relationship. Percent means out of a hundred, and since we don't know the percentage on top,  we can mark it as ?.

21/300 = ?/100

To figure this out quickly, we can try figuring out how many times we need to multiply or divide to get to the next number. Between 21 and ?, we can't do anything because we are unsure of what ? is.

Between 300 and 100, we can notice that to get to 100, we must divide by 3. 300/3 = 100

This means that the first ratio is three times the amount of the second ratio, which means that the second ratio is 1/3 of the first.

We can multiply 21 by 1/3 (or divide by 3), which will get us to 7.

7/100 = 0.07 = 7%

Drag the tiles to the correct boxes to complete the pairs.

Answers

The correct boxes to the complete pairs are,

12 - 1/2r        →      (-8 - r) + (2r - 4)

r - 13/6         →       (7r - 3/2) - (2/3 + 6r)

13r + 20       →       (6r + 7) + (13 + 7r)

-12 + r          →        (-8 - r) + (2r - 4)

What is simplified expression?

Writing a similar expression devoid of similar terms is what is meant by the expression "simplify." In other words, we will rewrite the expression using the fewest number of terms.

Consider, the given expressions

(1)  (6r + 7) + (13 + 7r)

Simplifying this,

6r + 7 + 13 + 7r

13r + 20

(2) (13 - 3/2r) - (1 - r)

Simplifying this,

13 - 3/2r - 1 + r

12 - 1/2r

(3) (-8 - r) + (2r - 4)

Simplifying this,

-8 - r + 2r - 4

-12 + r

(4) (7r - 3/2) - (2/3 + 6r)

Simplifying this,

7r - 3/2 - 2/3 - 6r

r - 13/6

Hence, the correct boxes to the complete pairs are,

12 - 1/2r        →      (-8 - r) + (2r - 4)

r - 13/6         →       (7r - 3/2) - (2/3 + 6r)

13r + 20       →       (6r + 7) + (13 + 7r)

-12 + r          →        (-8 - r) + (2r - 4)

To know more about simplified expression, click on the link

https://brainly.com/question/1280754

#SPJ4

Complete question:

Complete question is attached below,

help w this, dont guess

Answers

2,3,4,5 ……………………………………..

urgent help needed the question is written in the image below plss

Answers

#1= 36

#2=81

#3= 32

#4=125

You and a classmate have been paired to solve an equation. Your partner says they got an answer but the solution they found does not work when they checked it. Here is their work:
6 (8-3x )− 3 (9x−1 )+ 60
54 - 18x = −27x − 3 + 60
54 - 18x = −27x + 57
-18x = -27x + 3
9x = 3
x= 1/3
Explain all of the mistakes your partner made and how to correct them. After correcting the mistakes, write the correct answer for this equation.

Answers

The mistake are shown below and the correct steps are shown below.

What is an expression?

Mathematical expression is defined as the collection of the numbers variables and functions by using operations like addition, subtraction, multiplication, and division.

Given that;

The expression is,

⇒ 6 (8 - 3x) = - 3 (9x - 1) + 60

And, All the steps are;

⇒ 6 (8 - 3x ) = - 3 (9x - 1 ) + 60

⇒ 54 - 18x = −27x − 3 + 60

⇒ 54 - 18x = −27x + 57

⇒ -18x = -27x + 3

⇒ 9x = 3

⇒ x= 1/3

Now,

Since, The expression is,

⇒ 6 (8 - 3x) = - 3 (9x - 1) + 60

Cleary, In the second step 2; your partner doing mistake.

So, All the correct steps are;

⇒ 6 (8 - 3x) = - 3 (9x - 1) + 60

⇒ 48 - 18x = - 27x + 3 + 60

⇒ 48 - 18x = - 27x + 63

⇒ 27x - 18x = 63 - 48

⇒ 9x = 15

⇒ x = 15/9

⇒ x = 5/3

Thus, The correct value is;

⇒ x = 5/3

Learn more about the mathematical expression visit:

brainly.com/question/1859113

#SPJ1

If a 16-foot utility pole is connected to a cable
that is attached to the ground 12 feet from the
base of the pole, find then length of the cable?

Answers

Answer:20 ft

Step-by-step explanation:

Using Pythagoras' Theorem:

[tex]h^{2} = a^{2} +b^{2} \\h^{2} = 16^{2} +12^{2} \\h^{2} = 256+144h^{2} = 400\\\\[/tex]

Now you want to get h alone. To do that you need to get rid of the squared by finding the square root of 400.

[tex]h=\sqrt{400}\\h=20[/tex]

PLS ACTUALLY ANSWER BOTH REASONS !!!!! 100 PTS CHOICES ARE THE SAME FOR BOTH

Answers

The blanks in this two-column proof should be completed (filled) as follows:

Statements                              Reasons_______________

ΔADB ≅ ΔCDB                             HL.

AD ≅ CD                                    CPCTC.

What is the Right Triangles Similarity Theorem?

In Mathematics, the Right Triangles Similarity Theorem states that when the altitude of a triangle is drawn to the hypotenuse of a right angled triangle, then, the two (2) triangles that are formed would be similar to each other, as well as the original triangle.

What is CPCTC?

In Mathematics, CPCTC is an acronym for corresponding parts of congruent triangles are congruent and it states that the corresponding angles and side lengths of two (2) or more triangles are congruent if they are both congruent i.e AD ≅ CD.

Additionally, HL is an acronym for hypotenuse leg and it states that if the hypotenuse and one (1) leg in a right-angled triangle are congruent to the hypotenuse and leg of another right-angled triangle, then the two (2) triangles would be congruent i.e ΔADB ≅ ΔCDB.

Read more on CPCTC here: https://brainly.com/question/6076251

#SPJ1

Answer:

ΔADB ≅ ΔCDB                             HL.

AD ≅ CD                                    CPCTC.

Step-by-step explanation:

or what the  guy said on top :D

Solve using substitution.
y = –7x − 8
y = 2x + 10

Answers

Because they are both equal to y, you start off by making them equal to each other which would be…. 2x + 10 = -7x - 8 You then subtract 10 from both sides making 2x= -7x-18 next, add 7x to both sides making 9x=-18 divide both sides by 9 to get (x = -2). Then, plug x in to one of the equations to solve y. So, y = -7(-2)-8 or 14-8. Final answer: x = -2 y = 6 Or (-2, 6)
Other Questions
NASA's Skylab, the largest spacecraft ever to fall back to the Earth, reentered the Earth's atmosphere on July 11,1979, and broke into a myriad of pieces. One of the largest fragments was a 1770-kg, lead-lined film vault, which landed with an estimated speed of 120 m/s.If its speed at an altitude of 146 km was 7950 m/s, how much nonconservative work was done on the film vault during reentry? 4. Read text 4 and answer, which of the three elements generates more disturbances in road traffic in our city? Why? lyme disease is caused by infections of the bacterium borrelia burgdorferi which is transferred to humans via blood-sucking bites from the tick, ixodes scapularis. newly hatched ticks do not harbor b. burgdorferi. rather, they pick it up from certain hosts that are reservoirs of the bacterium. when a larval tick crawls onto a host, it may get groomed off and killed by the host, or it may feed successfully, in which case it may or may not then become infected with b. burgdorferi. (b) suppose a random sample of 40 houses are selected from the city. estimate the probability that the mean value of the 40 houses is less than $500,000. show your work. in the glycolytic pathway, fructose-1,6-bisphosphate ( fbp ) contains one phosphate each at blank. six carbon containing fbp is acted upon by aldolase to yield two triose phosphates: dihydroxyacetone phosphate ( dhap ) and glyceraldehyde-3-phosphate ( gap ). the blank-bound phosphate along with blank of fbp forms dhap , while blank along with phosphate-bound blank of fbp form gap . subsequent reaction steps result in the formation of pyruvate. the blank end of dhap or blank end of gap end up as blank of pyruvate, which yields co2 as it gets dehydrogenated to acetaldehyde. the acetaldehyde is converted to ethanol in the presence of alcohol dehydrogenase and nadh . hence, blank form of labeled glucose would give the most radioactivity in co2 and the least in ethanol. PLEASE HELP!!!!!!I need this answered ASAP after paul completes the collection of money and delivers it to jerusalem, he plans to begin missionary work where? why? hedging, or reducing risk, is the same as adding value or return to the firm. group of answer choices true false a bicyclist is riding north on level ground and has zero net force. a single force pointing south then acts on the bicycle. which effect does the new force have on the motion of the bicycle? responses what is the speed of visible light waves when traveling through a vacuum? about 3 cross 10^8 m/s about 350 m/s about 1 cross 10^8 m/s light waves cannot travel through a vacuum. about 2 cross 10^8 m/s suppose the federal government charters a corporation to help regulate financial matters across state borders. this corporation would be a(n) . Based on what you understand about risk and return, why is investing in single stocks a bad idea?. the conversion of a lifo inventory to approximate the inventory at fifo is accomplished through application of which one of the following formulas? even when using sunscreen with an spf of 15 to 30, sufficient vitamin d synthesis can be obtained in as little as of sun exposure. A piece of paper is to display ~150~ 150 space, 150, space square inches of text. If there are to be one-inch margins on the sides and the top and a two-inch margin at the bottom, what are the dimensions of the smallest piece of paper that can be used?. What does the d in the nutrition risk screening initiative determine acronym stand for?. given a nominal interest rate of 8 percent, in which of the following cases would you earn the highest after-tax real interest rate? a. inflation is 5 percent; the tax rate is 40 percent. b. inflation is 4 percent; the tax rate is 30 percent. c. inflation is 3 percent; the tax rate is 45 percent. d. inflation is 2 percent; the tax rate is 50 percent When a u. S. Company purchases $1 million worth of french cheese, the value of that transaction is recorded in the?. Which of the following reasons would you give to support your recommendation to Cisco Systems? Check all that apply. O Vertical communication flows ensure that decisions are standardized throughout the company. Decentralized decision making allows for greater flexibility in meeting customer needs. Narrower spans of management and centralized decision making offer improved product control. O Shorter chains of command and horizontal communication allow for increased innovation. Go where you may, search where you will, roam through all the monarchies and despotisms of the Old World, travel through South America, search out every abuse, and when you have found the last, lay your facts by the side of the everyday practices of this nation, and you will say with me, that, for revolting barbarity and shameless hypocrisy, America reigns without a rival. 4. In the final paragraph of the excerpt, Frederick Douglass draws a comparison between American cruelty and the "monarchies and despotisms of the Old World." Why is this comparison particularly condemning? He ends the paragraph by concluding that "America reigns without a rival." Why is his word choice in this final clause particularly powerful? Support your answer with textual evidence. This comparasin Douglass makes