Answer: 36
Step-by-step explanation:
(Triangle ABC is isosceles)
(base angles of an isosceles triangle are congruent)
(In triangle CMB, angles in a triangle add to 180 degrees)
(triangle sum theorem)
(30-60-90 triangle CMB)
(sides opposite congruent angles in a triangle are congruent)
(segment addition postulate)
(x-1)^2=9 <=> x-1=3 <=> x=4
The number of handshakes that will occur in a group of eighteen people if each person shakes hands once with each other person in the group is 153 handshakes
In order to determine the number of handshakes that will occur among 18 people, that is, the number of ways we can choose 2 persons from 18 people.
∴ The number of handshakes = 






∴ The number of handshakes = 153 handshakes
Hence. 153 handshakes will occur in a group of eighteen people if each person shakes hands once with each other person in the group.
Learn more here: brainly.com/question/1991469
Answer:
2
I am taking my first programming course, so my apologies if this is a dumb question/possibly classified by the wrong category on this site. One of the exercise problems I am working on is the following:
Define a function print_total_inches, with parameters num_feet and num_inches, that prints the total number of inches. Note: There are 12 inches in a foot. Ex:
print_total_inches(5, 8) prints:
Total inches: 68
Step-by-step explanation: