can someone help to find the missing angle measurements

Can Someone Help To Find The Missing Angle Measurements

Answers

Answer 1

Answer:

Angle 1 = 75°

Angle 2 = 55°

Angle 3 = 55°

Angle 4 = 40°

Angle 5 = 140°

Angle 6 = 40°

Angle 7 = 75°

Angle 8 = 65°

Angle 9 = 115°

Step-by-step explanation:

1) We start with angle 2

Angle 2

Angles on a straight line = 180°

Hence,

b + 125° = 180°

b = 180° - 125°

b = 55°

Angle 2 = 55°

2)Angle 1

The sum of angles in a triangle = 180°

Hence

Let Angle 1 = a

50° + 55° + a = 180°

a = 180° - (50° + 55°)

a = 180° - 105°

a = 75°

3)Angle 3

Angle 2 and Angle 3 are vertical angles

So we use the Vertical angle theorem

This means

Angle 2 = Angle 3

Angle 2 = 55°

Hence, Angle 3 = 55°

4) Angle 4

Sum of Angles in a triangle = 180°

Let Angle 4 = d

Hence:

85° + Angle 3 + d = 180°

85° + 55° + d = 180°

d= 180° - (85° + 55°)

d = 180°- 140°

d = 40°

5)Angle 5

Angle 4 and Angle 5 are angles on a straight line

Sum of angles on a straight line = 180°

Angle 4 = 40°

Let Angle 5 = e

Hence:

40° + e = 180°

Collect like terms

e = 180° - 40°

e = 140°

6) Angle 6

Angle 4 and Angle 6 are vertical angles

Using Vertical angle theorem,

Angle 4 = Angle 6

Angle 4 = 40°

Hence, Angle 6 = 40°

7)Angle 9

Solving for Angle 9,

Sum of angles on a straight line = 180°

Angle 9 = i

i + 65° = 180°

i = 180° - 65°

i = 115°

8) Angle 8

= Angle 9 and Angle 8 are angles in a straight line

= Angle 8 = h

h + 115° = 180°

h = 180° - 115°

h = 65°

9)Angle 7

Sum of angles in a triangle = 180°

Angle 7 = g

g = 180° - (65° + Angle 6)

= 180° - (65 + 40

= 180° - 105°

= 75°


Related Questions

What is the factor of x³ 6x² 12x 8?

Answers

One factor of equation x³ + 6x² + 12x + 8 is (x + 2).

Describe equation.

Two expressions joined by an equal sign form a mathematical statement known as an equation. An equation is, for instance, 3x - 5 = 16. We can solve this equation and determine that the value of the variable x is 7.

According to the given question:

Here,

The Expression is

=>  x³ + 6x² + 12x + 8

=> (x³ +8) + 6x (x+2)

= > (x + 2) ( − 2x + 4) + 6x(x + 2)

= >(x + 2) {  − 2x + 4 + 6x}

= > (x + 2) ( + 4x + 4)

=> (x + 2) { x² + 2(2)(x) +2²}

=> (x+2) is a factor

Therefore, one factor of equation x³ + 6x² + 12x + 8 is (x + 2).

To know more about equation, visit

brainly.com/question/10413253

#SPJ4

Solve the systems of equations.

Answers

Answer: x=2, y=-8

Step-by-step explanation: there are a couple of different methods you can use, my favourite is substitution

to do this, find a value of x or y from one equation and plug it into the other. let's use x in this case

so we have 13x-6y=22 and x=y+6

for the x value of the first equation, plug in x=y+6 from the second equation to get:

13(y+6)-6y=22

then you solve for y,

13y+78-6y=22

7y=-56

y=-8

then to solve for x, plug in your y value to either of the first 2 equations. lets use x=y+6

so you'd have x=(-8)+6 to give you x=2

hope this helps!

The graph of a sinusoidal function has a minimum point at (0,-10) and then has a maximum point at (2,-4)
Write the formula of the function, where x is entered in radians.

Answers

Answer:

f(x) = 6 * sin(2x) - 10

Step-by-step explanation:

We can use the given information to write the general formula of a sinusoidal function as follows:

f(x) = A * sin(B(x - C)) + D

The amplitude of the function, A, is equal to the difference between the maximum and minimum values of the function, which in this case is -10 - (-4) = 6.

The period of the function, B, is equal to the distance between consecutive maximum or minimum points, which in this case is 2 - 0 = 2.

The phase shift of the function, C, is equal to the horizontal shift of the entire function, which in this case is 0 since the minimum point is at x = 0.

The vertical shift of the function, D, is equal to the y-coordinate of the minimum point, which in this case is -10.

Therefore, the formula of the given function is:

f(x) = 6 * sin(2(x - 0)) - 10

We can simplify this formula by removing the unnecessary parentheses and constants:

f(x) = 6 * sin(2x) - 10

This is the final formula for the given sinusoidal function, where x is entered in radians.

What is AAS similarity theorem?

Answers

If two angles and a non-included side of one triangle are equal to two angles and a non-included side of a second triangle then the triangles are congruent.

How do you represent three consecutive odd integers?

Answers

You represent three consecutive odd integers with x, x + 2 and x + 4

How to determine the representation of odd integers

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

Three consecutive odd integers

As a general rule

Odd integers are integers that cannot be divided by 2

Consecutive odd integers have a difference of 2

This means that the three consecutive odd integers are

x, x + 2 and x + 4

Where the least of the integers is x

Read more about consecutive integers at

https://brainly.com/question/10853762

#SPJ1

How do you find the largest and smallest number in an unsorted integer array Python?

Answers

There are 3 methods to find the largest and smallest number in an

unsorted integer array Python.

How do you find the largest and smallest number in an unsorted integer array Python?Method 1 : Using Iteration.Method 2 : Using Sort() function.Method 3 : Using max() and min() function

Method 1:

Take a variable say mini to store the smallest element of the array and maxi to store the largest element.Set mini = arr[0] and maxi = arr[0]Check if(arr[i]<mini) then set mini = arr[i]Also check if(arr[i]>maxi) then set maxi = arr[i]After complete iteration print mini and maxi.

Method 2:

Sort the array using inbuilt sort()functionSmallest element is at index 0 and largest is at index -1So, print(arr[0])And, print(arr[-1])

Method 3:

Using inbuilt function min(arr) , it return smallest element of the array.Similarly max(arr) return the largest element of the array.

There are 3 methods to find the largest and smallest number in an

unsorted integer array Python.

To know more about unsorted integer array, check out:

https://brainly.com/question/14451504

#SPJ4

what is the sign of f on -5/2 < x < 4

Answers

Answer:

f is negative

The whales' star cornerback is paid $1 million and is guaranteed a 19% pay raise for the next three years. What will his salary be three years from now?.

Answers

The income of whales star after 3 years and getting 19% rise every year will be  $1685159 .

Given, The whales' star cornerback is paid $1 million and is guaranteed a 19% pay raise for the next three years .

To get the salary of whale star after 3 years of increment with 19%.

Salary =  $1 million

Salary after 1st increment =  $1 million +  $1 million of 19%

Salary after 1st increment = $1190000

Salary after 2nd increment =  $1190000 + $1190000 of 19%

Salary after 2nd increment = $1416100

Salary after 3rd increment =  $1416100 + $1416100 of 19%

Salary after 3rd increment = $1685159

Final salary after 3 years will be  $1685159.

Know more about percentages,

https://brainly.com/question/14801224

#SPJ4

1)No regime de juros composto, encontre as taxas trimestral e anual equivalentes à taxa de 1,05% ao mês

2)Calcule a taxa de juros compostos equivalente a uma taxa efetiva de 1% ao mês, nos períodos a seguir:

a)ao semestre;

b)ao ano.


alguém pode me ajudar a entender como fazer esses tipos de exercícios? estive tentando aprender a um tempo mas não to conseguindo e o livro não ajuda muito.

Answers

Answer:

Para encontrar a taxa trimestral equivalente à taxa de 1,05% ao mês, basta dividir a taxa mensal por 3, pois um trimestre é composto por 3 meses. Portanto, a taxa trimestral equivalente à taxa de 1,05% ao mês é de 1,05% / 3 = 0,35%.

Para encontrar a taxa anual equivalente à taxa de 1,05% ao mês, basta multiplicar a taxa mensal por 12, pois um ano é composto por 12 meses. Portanto, a taxa anual equivalente à taxa de 1,05% ao mês é de 1,05% x 12 = 12,6%.

2)a) Para calcular a taxa de juros compostos equivalente a uma taxa efetiva de 1% ao mês ao semestre, basta multiplicar a taxa mensal por 6, pois um semestre é composto por 6 meses. Portanto, a taxa de juros compostos equivalente a uma taxa efetiva de 1% ao mês ao semestre é de 1% x 6 = 6%.

b) Para calcular a taxa de juros compostos equivalente a uma taxa efetiva de 1% ao mês ao ano, basta multiplicar a taxa mensal por 12, pois um ano é composto por 12 meses. Portanto, a taxa de juros compostos equivalente a uma taxa efetiva de 1% ao mês ao ano é de 1% x 12 = 12%.

Jenna and Kyle are working together to address a stack of envelopes for a charity's fundraising drive. Jenna can address 10 more envelopes per hour than Kyle. The total time, in hours, it will take the two students to address all the envelopes is represented by the expression below. Which statement is true?

Answers

The correct statement regarding the together rate is given as follows:

A. The total time, in hours, it would take Jenna to address the 1800 envelopes alone is given by 1800/(x + 10).

How to obtain the together rate?

The together rate is given by the sum of each separate rate, thus the sum given in the problem on the image represents the total time it takes for them to address all the envelopes.

Jenna can address 10 more envelopes per hour than Kyle, hence:

The variable x represents the number of envelopes that Kyle can address in one hour.The variable x + 10 represents the number of envelopes that Jenna can address in one hour.

The number 1800 represents the total number of cards, hence from this and from the bullet points, statement A is correct.

Missing Information

The problem is given by the image shown at the end of the answer.

More can be learned about the together rate at https://brainly.com/question/26310043

#SPJ1

In ΔQRS, s = 5.2 inches, ∠S=129° and ∠Q=30°. Find the length of r, to the nearest 10th of an inch.

Answers

The measure of the length r (SQ) of the triangle ΔQRS will be 2.40 inches.

What is the sine law?

The Law of Sines The law of trigonometric functions, sine law, sine formula, or sinusoidal rule is a trigonometric equation that relates the sizes of any triangle's edges to the sines of its orientations.

The sine law in the triangle ΔQRS is given as,

QR / sin S = SQ / sin R = SR / sin Q

The third angle of the triangle ΔQRS is given as,

∠Q + ∠R + ∠S = 180°

∠R + 30° + 129° = 180°

∠R = 21°

Then the measure of the length r (SQ) will be calculated as,

5.2 / sin 129° = SQ / sin 21°

SQ = 2.40 inches

The measure of the length r (SQ) of the triangle ΔQRS will be 2.40 inches.

More about the sine law link is given below.

https://brainly.com/question/17289163

#SPJ1

What percentage of radioactive atoms will remain after 1 half-life?

Answers

After one half-life, 50% remain in the initial parent nuclei, 25% after two, and so on. The amount of radiation emitted by a radioactive source depends on both its half-life and the initial number of radioactive atoms present.

What are radioactive atoms?

Atoms strive for stability, thus they release energy from their nucleus in the form of a particle or ray to achieve a more stable state.

The unstable atom is referred to as a radioactive atom, the process is known as radioactivity, and the energy emitted is radiation.

If these forces are out of balance or if the nucleus has an excessive amount of internal energy, an atom is unstable (radioactive).

An overabundance of neutrons or protons can make the nucleus of an atom unstable.

The initial parent nuclei still contain 50% of them after one half-life, 25% after two, and so on.

The half-life and the initial quantity of radioactive atoms present both affect how much radiation is produced by a radioactive source.

Therefore, after one half-life, 50% remain in the initial parent nuclei, 25% after two, and so on. The amount of radiation emitted by a radioactive source depends on both its half-life and the initial number of radioactive atoms present.

Know more about radioactive atoms here:

https://brainly.com/question/2320811

#SPJ4

Answer:

6.25%

Step-by-step explanation:

Olivia bought snacks for her team's practice. She bought a bag of chips for $2.25 and
a 8-pack of juice bottles. The total cost before tax was $11.69. Which equation could
be used to determine j, how much each bottle of juice costs?

Answers

Each juice bottle costs $9.44.

What is a juice bottle?

Liquids that are flavoured with concentrate or other biological food sources, such meat or seafood, such as clam juice, are referred to by this term. It is added to foods or other drinks, like smoothies, as an ingredient or flavor.

To determine the cost of each bottle of juice, you can set up the following equation:

j + 2.25 = 11.69

Where j is the cost of each bottle of juice.

To solve for j, you can subtract 2.25 from both sides of the equation:

j = 11.69 - 2.25

This simplifies to:

j = 9.44

So, each bottle of juice costs $9.44.

To know more about juice bottle visit:  https://brainly.com/question/7436085

#SPJ1

The longest ladder on the fire truck reaches 95 feet. A building has 20 stories, and each story is 18 feet high. what is the highest story that the ladder can reach?

(A) 5th story
(B) 6th story
(C) 10th story
(D) 18th story

(Somebody please help me answer this question I rlly need help with this!)

Answers

Answer:

Rounding down to the nearest whole number, we get 5 stories. The correct answer is, therefore (A) the 5th story.

Step-by-step explanation:

To solve this problem, we need to find the number of stories the ladder can reach by dividing the length of the ladder by the height of each story.

The longest ladder on the fire truck reaches 95 feet, and each story is 18 feet high, so the highest story that the ladder can reach is:

95 feet / 18 feet/story = <<95/18=5.28>>5.28 stories

(-3,4) (6,0),(-3,4),(-8,-2) a function

Answers

There is no input mapped into two or more outputs in the given relation:

(-3,4) (6,0),(-3,4),(-8,-2)

Thus, the relation is a function.

Is the relation a function or not?

A relation maps elements of a set (inputs, usually defined by the variable x) into elements of another set (outputs, usually defined by the variable y).

So, for example, the coordinate pair (x, y) means that a relation is mapping the input x into the output y.

A relation is also a function if there is no input being mapped into two or more outputs.

For the case of the given relation:

(-3,4) (6,0),(-3,4),(-8,-2)

The mappings are:

-3  → 4   (this one appears twice)

6  → 0

-8  → -2

So no input is mapped into two or more outputs, then the relation is a function.

Learn more about functions:

https://brainly.com/question/2328150

#SPJ1

What is integration in simple words?

Answers

Regional economic integration has facilitated trade among neighbors while allowing nations to concentrate on issues pertinent to their stage of development. Four forms of regional economic integration are possible. Zone of unrestricted trade. The most basic form of economic cooperation is this one.

Worldwide integration of the markets. global integration of the economy. On the financial markets, the effects of globalization are being assessed. More than ever, people, companies, and sectors are linked. This facilitates linkages, which encourages specialization, innovation, and economic expansion.

These accords have made it possible for nations to trade successfully with one another today by removing trade and financial restrictions. actions taken to lower prices for consumers in the member countries of the bloc when tariffs are decreased

For more such question on integration.

https://brainly.com/question/27419605

#SPJ4

10. A new bank customer with $3,000
a money market account. The
wants to open
simple interest rate of 1.1%.
bank is offering a
a. How much interest will the customer earn in
20 years?
b. What will be the account balance after
20 years?

Answers

Answer:

a. $660

b. $3660

Step-by-step explanation:

a. 1.1% = 1 years

   22% = 20 years

22% = 0.22

Take 3000 times 0.22 = $660

So, they will earn $660 interest in 20 years

b. $3000 + $660 = $3660

$3660 is their account balance after 20 years

How do you read X sets?

Answers

The elements in sets are separated by commas so they can be read easily.

Define set builder notation.

Instead of describing the constituents of a set, a set-builder notation describes them. The elements are listed, for instance, in the set {5, 6, 7, 8, 9}. We interpret the collection of all x such that x is a counting number between 4 and 10 as the collection of all x.

Define set.

In mathematics, a set is a logically arranged group of items that can be represented in either set-builder or roster form. Sets are typically denoted by curly brackets {}; for instance, A = {1, 2, 3, 4} is a set.

The sequence of elements (separated by commas) between the curly braces " and "in mathematics form an unordered group of elements known as a set. For instance, the domesticated animals {cat, cow, dog} , the odd numbers {1, 3, 5, 7, 9} and the alphabets {a, b, c, d, e} are all sets. So they can be read or interpreted easily.

To learn more about set visit the link:

https://brainly.com/question/13458417

#SPJ4

A sunflower is 3 inches tall after 1 week, 5 inches after 2 weeks, and 7 inches after 3 weeks. What is the recursive rule and explicit rule of this sequence?

Answers

Answer: f(x)= 2x+ 1

Step-by-step explanation:

Let's set up an equation

f(x)=mx+b

We know it's 3 inches tall and grows 2 inches weekly.

Our equation is

f(x)= 2x + 1

Now let's test the week is 1

f(1) = 2(1) +1

f(1) = 3

Let test the week is 2

f(2) = 2(2)+1

f(2) = 5

So we know this equation work

Is 990 divisible by 3 yes or no?

Answers

Yes it is divisible by 3. A number is fully divisible by three if its digit sum is also divisible by three, according to the rule of divisibility for three.

what is divisibility test?

The divisibility rule is a concise and practical approach to check, often by looking at the integer's digits, whether a given integer is divisible by a given set divisor without actually executing division. Without actually doing the division procedure, you may quickly discover if a given number can be divided by a defined divisor using the divisibility test. When dividing two numbers exactly, the quotient must be an integer and the remainder must be zero.

add all number

9+9+0 = 18

and 18/3 = 6

To know more about divisibility test visit:

https://brainly.com/question/240581

#SPJ4

please help me with this question it is urgent

Answers

Answer:

4 1/3, 4.337, 35/8, 4.44

Step-by-step explanation:

4.337, 4 1/3, 35/8, 4.44

4 1/3 = 13/3 = 4.333

35/8 = 4.375

So, the order from least to greatest is: 4 1/3, 4.337, 35/8, 4.44

Answer:

4 1/3, 4.337, 35/8, 4.44

Step-by-step explanation:

"order from least to greatest" means put the smallest first and each next one bigger and the biggest one last.

Change everything to decimals to compare.

A fraction bar is just a division symbol.

1/3 means 1÷3 which is .33333...

4 1/3 = 4.33333...

35/8 means 35÷8

= 4.375

Smallest is 4.333...

So 4 1/3 goes first.

Then 4.337 and next 35/8 (bc 4.375)

Last is biggest 4.44 so it goes last.

In order from least to geatest is:

4 1/3, 4.337, 35/8, 4.44

Question : A good practice when using credit cards is to routinely

A: take advantage of major sales.
B: use one credit card to pay debt on another credit card.
C: pay the complete balance each month.
D: accept all pre-approved credit card offers.

Answers

Answer: C: pay the complete balance each month

1: The drama department sold a total of 360 tickets to there Friday and Saturday night shows. They Sold three times as many tickets for Saturday's show than for Fridays show.
A: Write a system of equations to represent this scenario
B: How many tickets were sold for Friday, and Saturday? Is there more than one solution?
C: Graph the system of equations on a coordinate plane. Label the axes.
D: Justify algebraically that your solution is correct.

Answers

(A) Given question can be represented in the system of linear equations as x + y = 360,

      y =3x

(B) 90 tickets were sold on Friday and 270 tickets were sold on Saturday.

There will be only one solution to this question.

(C) We have drawn the graph for the solution.

(D) We have justified our answers by using the substitution method.

What is a linear equation in two variables?

An equation is said to be a linear equation in two variables if it is written in the form of ax + by + c=0, where a, b & c are real numbers and the coefficients of x and y, i.e a and b respectively, are not equal to zero.

Let x number of tickets sold on Friday and y number of tickets sold on Saturday.

By using the given condition,

x + y = 360 ----------(I)

y =3x -------(II)

Put y = 3x in equation (I), we get

x + 3x = 360

4x = 360

  x = 90

Now put x = 90 in equation (I), and we get

90 + y = 360

y = 270

Hence, 90 tickets were sold on Friday and 270 tickets were sold on Saturday.

There will be only one solution to this question.

To learn more about the linear equations in two variables, visit:

https://brainly.com/question/24085666

#SPJ1

Use a recursive function for the geometric sequence 2, −6, 18, −54, ... to represent the 9th term.
a. f(9)=f(8)•(-3)
b. f(9)=f(1)•(-3)^8
c. f(9)=f(1)+3(8)
d. f(9)=f(8)+3(8)

Answers

The geometric sequence 2, −6, 18, −54, ... to represent the 9th term is

d. f(9)=f(8)+3(8)

A geometric sequence is a sequence of numbers in which each term after the first is found by multiplying the previous one by a fixed, non-zero number, called the common ratio. In the given sequence, the common ratio is -3, so the nth term of the sequence can be found by multiplying the previous term by -3.

Using the recursive formula for a geometric sequence, the nth term can be found by multiplying the first term, f(1), by the common ratio raised to the (n-1) power, or f(n) = f(1)•(-3)^(n-1). In the given sequence, f(1) is 2, so the 9th term can be found by multiplying 2 by -3 raised to the 8th power, or f(9)=f(1)•(-3)^8.

Alternatively, the nth term can also be found by multiplying the previous term, f(n-1), by the common ratio, or f(n) = f(n-1)•(-3). Since the 8th term in the given sequence is -54, the 9th term can be found by multiplying -54 by -3, or f(9)=f(8)•(-3).

Therefore, the 9th term in the given sequence is -486 and the correct answer is d. f(9)=f(8)+3(8).

Learn more about Geometric sequence here:

https://brainly.com/question/11266123

#SPJ4

What is the factor of 2x³ 3x² 17x 30?

Answers

Therefore, the solution to this problem is  (x - 2)(x + 3) are the factors of p(x) (2x - 5).

Examine the equation.

An equation is a mathematical statement that is created by connecting two expressions using the equivalent sign. An example of an equation is 2x - 5 = 15. By resolving this equation, we may ascertain that the variable x has a value of 5.

Here,

Given, the polynomial in this case is 2x3 - 3x2 - 17x + 30.

It is necessary to factor the polynomial.

Let p(x) equal 2x3, 3x2, 17x, and 30.

P(xconstant )'s term is 30.

Factors of 30 are equal to 1, 2, 3, 5, 6, 10, 15, and 30.

Consider x = 2.

Replace x = 2 in p. (x),

2(2)³ - 3(2)² - 17(2) + 30 =p(2)

=> 2(8) - 34 - 3(4) + 30

= >16 - 16

= 0

So, x - 2 is a factor of 2x³ - 3x² - 17x + 30.

Now splitting the x² and x terms,

2x³ - 4x² + x² - 2x - 15x + 30= 2x³ - 3x² - 17x + 30

=> x(x - 2) - 15(x - 2) +  2x²(x - 2)

= > (x - 2)  *  (2x² + x - 15)

factoring  2[tex]x^{2}[/tex] + x - 15

= 2[tex]x^{2}[/tex] + 6x - 5x - 15

= - 5(x + 3)  +  2x(x + 3)

= (x + 3)(2x - 5)

Therefore, the solution to this problem is  (x - 2)(x + 3) are the factors of p(x) (2x - 5).

To know more about equation , visit

brainly.com/question/10413253

#SPJ4

Which inequality repreent the compound in equality x i greater than 3 and x i le than 5

Answers

The compound inequality x > 3 or x < 5 is 4 , that set of all real numbers.

What is inequality ?

If an inequality has no real solution, this means that there are no numbers that can be substituted into the inequality to make the statement true. If an inequality has all real numbers as the solution, this means that every real number can be substituted into the inequality to make a true statement.

Have given,

x > 3 and x < 5

Since this compound inequality is an or statement , it includes all of the integral numbers in each of the solutions, which in this case is all the numbers on the number line .

The region of the line greater than 3 and less than 5 that number is 4.

Hence,

The compound inequality x > 3 or x < 5 is 4 , that set of all real numbers .

To learn more about inequality visit:

brainly.com/question/28823603

#SPJ4

Have given,

x > 3 and x < 5

Since this compound inequality is an or statement , it includes all of the integral numbers in each of the solutions, which in this case is all the numbers on the number line .

The region of the line greater than 3 and less than 5 that number is 4.

The compound inequality x > 3 or x < 5 is 4 , that set of all real numbers.

2.
1. A clock that strikes only the hours has just finished striking a total of 9
times in the last 24 hours. What hour did it just finish striking?

Answers

Answer:

6 1/2 hours     12-hour clock

18 1/2 hours   24- hour clock

Step-by-step explanation:

I attached a picture of how I solved it!

The clock just crossed the 9th hour.

What is a mathematical function, equation and expression?            function : In mathematics, a function from a set X to a set Y assigns to each element of X exactly one element of Y. The set X is called the domain of the function and the set Y is called the codomain of the function.expression : A mathematical expression is made up of terms (constants and variables) separated by mathematical operators.equation : A mathematical equation is used to equate two expressions.

Given is that a clock that strikes only the hours has just finished striking a total of 9 times in the last 24 hours.

Since, the clock strikes only on hours, the clock just crossed the 9th hour.

Therefore, the clock just crossed the 9th hour.

To solve more questions on functions, expressions and polynomials, visit the link below -

brainly.com/question/17421223

#SPJ2

How do you find the inverse of a 2x2 matrix on a calculator?

Answers

We find the inverse of a 2x2 matrix on a calculator using formula

A⁻¹ = Adjoint of A / determinant of A

Where, adjoint of A = [ d  -b]

                                    [-c   a]

and, determinant of A = 1/ ad - bc

What is inverse of a 2X2 matrix?

A real number's inverse is a number that, when multiplied by the inputted number, yields the multiplicative identity, which is 1, or 1. A matrix's inverse, represented by A⁻¹ in matrices, is a matrix that, when multiplied by A, yields the identity matrix I, or A.A⁻¹ = A⁻¹.A = I

The formula (adj A)/(det A) can be used to determine the inverse of a matrix A, where "adj A" stands for "adjoint of A" and "det A" for "determinant of A".

Let A is a 2x2 matrix such that, A = [a  b]

                                                          [c  d]

then, A⁻¹ = Adjoint of A / determinant of A

Where, adjoint of A = [ d  -b]

                                    [-c   a]

and, determinant of A = 1/ ad - bc

To learn more about 2x2 matrix visit:

brainly.com/question/30097760

#SPJ4

Find the greatest common factor. ab4c7, a7b4c

Answers

We know that,

Greatest common factor= the greatest common factor is the greatest factor that divides both numbers.

According to question.

Given data,

Factor of a= a

Factor of b=b× b× b× b

Factor of c=c× c× c× c× c× c× c

Therefore,

Factor of a=a× a× a× a× a ×a ×a

Factor of b4=b ×b ×b× b

Factor of c=c

Greatest common factor=ab4c

https://brainly.com/question/11988051

#SPJ1

How do you write 308 in expanded form?

Answers

305 is 3 hundreds, 0 tens, and 5 ones. 305 in expanded form is 300 + 5. “Three Hundred Eight”.
Other Questions
2.Mauricio tanque su auto en una estacin de gasolina. Si el galn costo $ 7.000 y l pag 12.250 por el servicio, Qu fraccin indica la cantidad de galones que pag Mauricio? 1.1 Define the word relationship and state FOUR qualities of a good relationship.(2+41.2 Mention FOUR impacts of toxic relationships on setting life goals.(4x1.1.3 Discuss how positive relationships in a family could assist you achieveacademically(221.4 Explain how mutual respect for rights and responsibilities by those in arelationship could sustain a positive relationship.(41.5 Critically discuss how personal values may assist you to sustain positive relationships with your friends.(Sub-to 15 - a = 17 what is a? Ill give brainliest and 100 points Epsilon currently pays $76 per unit to buy a part for a product it sells. Epsilon has excess capacity, and estimates that making the part would incur variable costs of $8 for direct materials and $40 for direct labor. Epsilon's normal predetermined overhead rate is 150% of direct labor cost, but management computes an incremental overhead rate of $16.00 per unit to make this part. Epsilon should choose to:___.A. Buy since the relevant cost to make it is $82 per unit. B. Make since the relevant cost to make it is $61.20 per unit.C. Buy since the relevant cost to make it is more than $74.00 per unit. Jensen has an above ground pool in the shape of a regular octagon. Opposite sides are 25 feet apart and each side is 10.4 feet long. It requires 7.5 gallons to fill one cubic foot. How much water is need to fill the pool with 3 feet of water.A. 3900B. 5850C. 1560D. 11700 A book is placed on a table and a rock sits on top of a cliff.Which statement is correct?Both the book and the rock have kinetic energy.Both the book and the rock have potential energy.O The book has potential energy and the rock has kinetic energy.The book has kinetic energy and the rock has potential energy. Please I need help ASAP After gathering information, a student using the problem-solving process should nextconsider options.implement a solution.weigh disadvantages.evaluate a solution. In the maze runner What do you notice is different about the word PUSH from the rest of the words? Colorblindness is an X-linked recessive disorder. If Abby has normal vision (but her father was colorblind) and Ryan is not colorblind. What are the chances that their daughter is colorblind? SHOW ALL WORK FOR CREDIT. (To insert a table in your answer if necessary click on the three dots, click on the icon that looks like a table and you can customize the number and type of boxes you need) 0.5w+3x,when w=6,x=5 ple help its EZ homework even if u only do 1 itl be gladly appreciated SOOOOMMMEEEE OONNNEEE PLLLEEEASSSEEE HEEELPPP ME. WITH THE RED PART ON THE TOP RIGHT CORNER I PICKED AMERICAN BADGER BECAUSE IT LOOKS LIKE THR WOLVERINE IT SAY I CHOOSE ..... BECAUSE... NEED HELP WITH THAT NOOOOOO LINKSWHY THE WOLVERINE LOOK SIMILAR TO THE BADGER What is the solution to this system of equations? 2 Fat-free cottage cheese is sold in quantities of 125 g at R8,99.Calculate the cost of the fat-free cottage cheese required in the recipe. I like this song, it has a nice ___________ to it.SteepRhythmSeriousMerchant Read the following sentence and answer the question.-My mother and sister still do not understand each other.-Which of the following modifies the sentence above using an adverbial phrase?A) My mother and sister, understanding their differences, still do not talk to each other.B)My mother and sister still do not understand each other, in spite of thirty years of living together.C) My mother still does not understand my sister and my sister still does not understand my mother.D) Their back turned, their mouths closed, my mother and sister still do not understand each other. How do people uncover what they havein common? What were the goal(s) of the Massive Resistance movement? Select all that applyA to fight for the integration of African Americans in white schoolsB. to maintain segregation in societyC to use the power of state governments to fight integrationD. to uphold the Brown v. Board of Education ruling