If CL is a bisector, how do i solve this?

If CL Is A Bisector, How Do I Solve This?

Answers

Answer 1

Answer:

Step-by-step explanation:

First equation: Use angle bisector theorem

\(\frac{x}{y}\) = \(\frac{35}{21}\) , \(\frac{x}{y}\) = \(\frac{5}{3}\) ⇒ x = \(\frac{5}{3}\) y ............ (1)

Second equation: Use cosine law

x² + y² - 2xycos 120° = ( 35 + 21 )² , cos 120° = - 0.5

x² + y² + xy = 56² ................. (2)

(1) ----> (2)

( \(\frac{5}{3}\) y )² + y² + \(\frac{5}{3}\) y² = 56² ............. (3)

9 × (3)

25y² + 9y² + 15y² =( 9 ) × 56²

7²y² = (168)²

y = 24

x = \(\frac{5}{3}\) × 24 = 40

AC = 40

BC = 24

m∠A 22 ° ( see the attachment )

m∠B 38 °

If CL Is A Bisector, How Do I Solve This?

Related Questions

The work shows the long division of 647 ÷ 3.



Find the values of a and b in the long division problem.

a =

b =

So, 647 3 = 215 +

Answers

I'm assuming ratio of a to b is the remainder of the long division.

The work shows the long division of 647 3.Find the values of a and b in the long division problem.a =b

what is the answer to 12+13

Answers

Answer: 25

Step-by-step explanation: 10+10=20 and 2+3=5. 20+5=2

Construct finite-state machines that act as recognizers for the input described by producing an output of 1 exactly when the input received to that point matches the description. (The input and output alphabet in each case is 0, 13.) (a) The set of all strings where the number of Os is a multiple of 3 (b) The set of all strings containing at least four 1s (c) The set of all strings containing exactly one 1 (d) The set of all strings beginning with 000 (e) The set of all strings where the second input is 0 and the fourth input is 1 (f) The set of all strings consisting entirely of any number (including none) of 01 pairs or consisting entirely of two Is followed by any number (including none) of Os (g) The set of all strings ending in 110 h) The set of all strings containing

Answers

Finite-state machines for given inputs: (a) 0s multiple of 3: 3-state machine. (b) At least four 1s: 4-state machine. (c) Exactly one 1: 2-state machine. (d) Begins with 000: 3-state machine. (e) Second is 0, fourth is 1: 4-state machine. (f) 01 pairs or 2 1s + 0s: 3-state machine. (g) Ends in 110: 3-state machine.

To construct finite-state machines that act as recognizers for the given inputs, we can follow these guidelines:

(a) For the set of all strings where the number of 0s is a multiple of 3, we can use a finite-state machine with three states. Start with the initial state, and transition to the next state whenever a 0 is encountered. After three transitions, go back to the initial state. If the machine ends in the accepting state, output 1.
(b) For the set of all strings containing at least four 1s, we can use a finite-state machine with four states. Start with the initial state, and transition to the next state whenever a 1 is encountered. If the machine enters the final state after four transitions, output 1.

(c) For the set of all strings containing exactly one 1, we can use a finite-state machine with two states. Start with the initial state and transition to the final state when the first 1 is encountered. Output 1 only if the final state is reached.

(d) For the set of all strings beginning with 000, we can use a finite-state machine with three states. Start with the initial state and transition to the next state whenever a 0 is encountered. If the machine reaches the final state after three transitions, output 1.

(e) For the set of all strings where the second input is 0 and the fourth input is 1, we can use a finite-state machine with four states. Start with the initial state and transition to the next state based on the inputs. Output 1 only if the machine reaches the final state.

(f) For the set of all strings consisting entirely of any number (including none) of 01 pairs or consisting entirely of two 1s followed by any number (including none) of 0s, we can use a finite-state machine with three states. Start with the initial state and transition based on the inputs. Output 1 only if the final state is reached.

(g) For the set of all strings ending in 110, we can use a finite-state machine with three states. Start with the initial state and transition based on the inputs. Output 1 only if the final state is reached.

Learn more about finite-state machines

https://brainly.com/question/32268314

#SPJ11

Finite-state machines (FSMs) can be constructed to act as recognizers for specific patterns in input strings. These are examples of how to construct FSMs as recognizers for different patterns in input strings. Each FSM is designed to produce an output of 1 when the input received matches the description provided.

Let's consider the given cases and construct FSMs for each one.

(a) The set of all strings where the number of Os is a multiple of 3:
To construct an FSM for this, we can keep track of the number of Os encountered so far. Initially, set the count to zero. When an O is encountered, increment the count by one. If the count becomes a multiple of 3, the FSM outputs 1; otherwise, it outputs 0. Reset the count to zero whenever a 1 is encountered.

(b) The set of all strings containing at least four 1s:
To create an FSM for this, we can keep track of the number of 1s encountered so far. Initially, set the count to zero. When a 1 is encountered, increment the count by one. If the count becomes equal to or greater than four, the FSM outputs 1; otherwise, it outputs 0.

(c) The set of all strings containing exactly one 1:
To build an FSM for this, we can have two states: a "no 1 encountered" state and a "1 encountered" state. Initially, start in the "no 1 encountered" state. Whenever a 1 is encountered, transition to the "1 encountered" state. If another 1 is encountered in the "1 encountered" state, transition to a third "more than one 1 encountered" state. In this case, the FSM outputs 0. Otherwise, if no additional 1s are encountered, the FSM outputs 1.

(d) The set of all strings beginning with 000:
To create an FSM for this, start in an initial state. When a 0 is encountered, transition to a second state. If two consecutive 0s are encountered in the second state, transition to a third state. Finally, if a third 0 is encountered in the third state, the FSM outputs 1; otherwise, it outputs 0.

(e) The set of all strings where the second input is 0 and the fourth input is 1:
To construct an FSM for this, start in an initial state. When the first input is read, transition to a second state. In the second state, transition to a third state if the second input is 0. In the third state, transition to a fourth state if the third input is not 0. Finally, in the fourth state, if the fourth input is 1, the FSM outputs 1; otherwise, it outputs 0.

(f) The set of all strings consisting entirely of any number (including none) of 01 pairs or consisting entirely of two Is followed by any number (including none) of Os:
To create an FSM for this, we can have multiple states to represent different scenarios. We start in an initial state and transition to a second state when a 0 is encountered. In the second state, transition back to the initial state if a 1 is encountered. If a 1 is encountered in the initial state, transition to a third state. In the third state, transition to a fourth state if an O is encountered. Finally, if an O is encountered in the fourth state, the FSM outputs 1; otherwise, it outputs 0.

(g) The set of all strings ending in 110:
To construct an FSM for this, start in an initial state. Transition to a second state if a 1 is encountered. In the second state, transition to a third state if a 1 is encountered again. Finally, if a 0 is encountered in the third state, the FSM outputs 1; otherwise, it outputs 0.

Learn more about Finite-state machines

https://brainly.com/question/32998825

#SPJ11

Adding and subtracting rational expressions, What is the difference? 2x+5/x^2-3x - 3x+5/x^3-9x - x+1/x^2-9?

Answers

After adding and subtracting the rational expressions , the simplified rational expression is 4x - 4/x² - 5/x³ + 9  .

We first simplify each expression inside the parentheses :

that means :

⇒ (2x + 5/x² -3x) = (2x - 3x + 5/x²) = (-x + 5/x²) ;

⇒ (3x + 5/x³ - 9x) = (-6x + 5/x³)  ;

⇒ (x + 1/x² - 9) = (-9 + x + 1/x²)  ;

Now we substitute these expressions into original equation/expression :

we get ; (-x + 5/x²) - (-6x + 5/x³) - (-9 + x + 1/x²)

Simplifying further ,

we get ;

⇒ -x + 5/x² + 6x - 5/x³ + 9 - x - 1/x²  ;

On Combining the like terms, we get ;

⇒ 4x - 4/x² - 5/x³ + 9

Therefore, the simplified rational expression is 4x - 4/x² - 5/x³ + 9.

Learn more about Rational Expression here

https://brainly.com/question/6460158

#SPJ4

The given question is incomplete , the complete question is

Adding and subtracting rational expressions, Simplify the rational expression  (2x + 5/x² -3x) - (3x + 5/x³ - 9x) - (x + 1/x² - 9)  .

The company June works for pays her 12$ per hour. She works 30 hours per week, and she receives a paycheck every 2 weeks. How does she get paid per paycheck before taxes

Answers

Answer:720

Step-by-step explanation:

Answer:

720

Step-by-step explanation:

Is (0,0) a solution of the graphed inequality?
Choose 1 answer:
Yes
No

Is (0,0) a solution of the graphed inequality?Choose 1 answer:YesNo

Answers

Answer:

no..........................

Please help I really don’t understand this

Please help I really dont understand this

Answers

Answer:

for number 1 set them equal to each other so like 6x-44=88 and then solve for x and do the same thing for the second one

3.4a=57.8 what is the value of a in this

Answers

Answer: 17

Step-by-step explanation:

divide both sides by 3.4 to get a=17

Answer:

the answer is 17

Step-by-step explanation:

57.8/3.4=17

what is the square root of 841

Answers

Answer:

the square root of 841 is 29

Step-by-step explanation:

29×29=841

\(\sqrt{841} = \bold{29}\)

Dice A and dice B have ten sides. What is the probability of rolling and odd number with both dice A and B?

Answers

The probability of rolling and odd number with both dice A and B is 1/4.

What is probability?

Probability simply means the likelihood that an event will occur on a scenario.

Since Dice A and dice B have ten sides,the numbers will be from 1 to 10. Therefore, there are 5 even numbers and 5 odd numbers.

Probability of odd number = 5/10 = 1/2

Probability of even number = 5/10 = 1/2

Probability of rolling both odd numbers will be:

= P(odd) × P(odd)

= 1/2 × 1/2

= 1/4

The probability is 1/4.

Learn more about probability on:

brainly.com/question/24756209

#SPJ1

x/3 - x/5 = ??? just fractions

Answers

Answer:

x/2  - 8x + 15

Step-by-step explanation:

Expand the polynomial using the foil method

8. (10 points) Evaluate the integral 11 emax{zº,y? } dyda

Answers

The limits of integration for both y and a, it is not possible to evaluate the given integral.

To evaluate the integral ∫∫emax{zº,y?}dyda, we need to determine the limits of integration and perform the integration.

First, let's focus on the expression emax{zº,y?}. This represents the maximum value between zº and y?.

Now, let's determine the limits of integration. Since we have two variables, y and a, we need to establish the ranges for each variable.

For y, we need to find the limits within which it varies. However, the given expression emax{zº,y?} does not provide any information about the limits of y. Without additional context or information, it is not possible to determine the range of y.

For a, we also lack information regarding its limits. Similar to y, the expression emax{zº,y?} does not provide any constraints on a. Without specific limits for a, we cannot proceed with the evaluation of the integral.

In summary, without more context or information regarding the limits of integration for both y and a, it is not possible to evaluate the given integral.

Learn more about integration here

https://brainly.com/question/30215870

#SPJ11

Someone help me plzzz. Quickkkkkk

Someone help me plzzz. Quickkkkkk

Answers

Answer:

They can make 5 posters.

A company buys machinery for $500000 and pays it off by 20 equal six-monthly instalments, the first payment being made six months after the loan is taken out. If the interest rate is 12%pa, compounded monthly, how much will each instalment be?

Answers

Each installment will be approximately $15,280.55.

To calculate the equal six-monthly installment, we can use the formula for the present value of an annuity.

Principal amount (P) = $500,000

Interest rate (r) = 12% per annum = 12/100 = 0.12 (compounded monthly)

Number of periods (n) = 20 (since there are 20 equal six-monthly installments)

The formula for the present value of an annuity is:

\(P = A * (1 - (1 + r)^(-n)) / r\)

Where:

P = Principal amount

A = Equal installment amount

r = Interest rate per period

n = Number of periods

Substituting the given values into the formula, we have:

$500,000 = \(A * (1 - (1 + 0.12/12)^(-20)) / (0.12/12)\)

Simplifying the equation:

$500,000 = A * (1 - (1.01)^(-20)) / (0.01)

$500,000 = A * (1 - 0.6726) / 0.01

$500,000 = A * 0.3274 / 0.01

$500,000 = A * 32.74

Dividing both sides by 32.74:

A = $500,000 / 32.74

A ≈ $15,280.55

Therefore, each installment will be approximately $15,280.55.

Learn more about Principal amount here:

https://brainly.com/question/30163719

#SPJ11

using the results of part (a) find an orthonormal should be parallel to v0 and {w0,w1} should span the same subspace as {v0,v1}.

Answers

Given that v0 = (2, 1, -2), v1 = (-2, 1, 1), and v2 = (1, 2, 2), we can find the orthonormal basis that should be parallel to v0, and w0 and w1 should span the same subspace as v0 and v1.To find the orthonormal basis that should be parallel to v0.

we need to follow these steps:

Let v0 be a vector in Rn with nonzero norm ||v0||, and let V be the subspace of Rn that is perpendicular to v0 (so if y is in V, then y·v0 = 0).

Then, we can construct an orthonormal basis {v1, . . . , vp} for V, and {v0/v0, v1, . . . , vp} will be an orthonormal basis for Rn.

To find {v1, . . . , vp}, we apply Gram-Schmidt to the basis {v0, v1, . . . , vp}.

Specifically, we compute vi' = vi - projv0vi for i = 1, . . . , p.

This ensures that {v1, . . . , vp} are all in V and that {v0/v0, v1, . . . , vp} is an orthonormal basis for Rn that is parallel to v0.

So, in this case, we can take v0 = (2, 1, -2), which has norm ||v0|| = sqrt(2^2 + 1^2 + (-2)^2) = sqrt(9) = 3.

Now, we need to find w0 and w1 that span the same subspace as v0 and v1. Since {v0, v1} is a basis for this subspace, any two linearly independent vectors in this subspace will span the same subspace. So, we can just pick any two such vectors. Let w0 = (2, 1, -2) and w1 = (-2, 5, 1).

We claim that {w0, w1} is linearly independent and spans the same subspace as {v0, v1}.To show that {w0, w1} is linearly independent, suppose that aw0 + bw1 = 0 for some scalars a and b. Then, we have(2a - 2b, a + 5b, -2a + b) = (0, 0, 0).This gives us two equations:2a - 2b = 0a + 5b = 0

Solving for a and b, we geta = 5/7 and b = -2/7.

Since a and b are not both zero, this shows that {w0, w1} is linearly independent.

To show that {w0, w1} spans the same subspace as {v0, v1}, we need to show that every vector in this subspace can be written as a linear combination of w0 and w1. Let (x, y, z) be any vector in this subspace.

To know more about orthonormal visit:

https://brainly.com/question/33727806

#SPJ11

Given that u= [6/5] and v=[-6/4] find 1/3( u-1/2v)

Answers

Answer:

\(\frac{-7}{10}\ or \ 0.7\)

Step-by-step explanation:

step 1.

\(\frac{1}{3} (\frac{-6}{4}-\frac{1}{2}(\frac{6}{5}))\)

step 2.

put it in a calculator

step 3

=\(\frac{-7}{10}\ or \ 0.7\)

Find the slope of the line graphed below

Find the slope of the line graphed below

Answers

Answer:

3/4

Step-by-step explanation:

Answer:

The slope is \(\frac{3}{4}\)

Step-by-step explanation:

We are given two points (2,5) and (-2,2). If we need to find the slope, there are two methods which we can use to find the slope.

Method 1: Count the slope

We can use \(\frac{rise}{run}\) to count the slope.

Counting the slope, we get \(\frac{3}{4}\) which cannot be simplified.

Method 2: Slope formula

We can use the formula \(\frac{y2-y1}{x2-x1}\) to find the slope as well.

We just have to plug in our coordinates into the formula to get the answer.

\(\frac{2-5}{-2-2}\)

Evaluate

\(\frac{-3}{-4}=\frac{3}{4}\)

this is reading btw and you get 23 points Fast pls

Think about the article you just read. Write two to three sentences describing what you would visualize in your mental model to understand how the two animals look different from each other.

Answers

The article red was titled "sense of emotion of dog and cat to humans"

To visualize the differences in feeling between Dogs and cats towards people, I would think of a dog swaying its tail and hopping up with fervor upon seeing its owner, whereas a cat may approach its owner more calmly and gradually with a loose tail.

I might picture the puppy gasping and looking for physical fondness, whereas the cat may lean toward to be petted or rubbed under the chin.

What is the  mental model?

Dogs show enthusiasm and affection towards owners, while cats exhibit different behaviors. Dogs show excitement through body language like wagging tails, jumping, seeking affection, and vocalizing.

Pets express joy and eagerness to be around humans, with cats being more reserved towards humans. Although affectionate, cats express emotions subtly such as calm body posture and soft chirping.

Learn more about  mental model from

https://brainly.com/question/31237269

#SPJ1

researchers must use experiments to determine whether relationships exist between variables. (T/F)

Answers

Researchers must use experiments to determine whether causal relationships exist between variables.

Researchers use experiments to determine causative relationships between variables. A causative relationship exists when a change in one variable (the cause) leads to a change in another variable (the effect).

Experiments allow researchers to manipulate the cause and observe the effect while controlling for other factors that could influence the relationship.

For example, if a researcher is interested in examining the relationship between smoking and lung cancer, they would conduct an experiment where they randomly assign participants to either a smoking or a non-smoking group.

The researcher would then collect data on the incidence of lung cancer in each group while controlling for other factors that might influence the relationship, such as age, gender, and socioeconomic status.

By randomly assigning participants to the smoking and non-smoking groups, the researcher can be confident that any differences in lung cancer incidence are due to the effect of smoking and not due to differences in the participants.

This type of experiment is called a randomized controlled trial and is considered the gold standard for determining causative relationships.

Experiments are essential in determining causative relationships between variables because they help to establish a cause-and-effect relationship and avoid confounding (when the relationship between two variables is observed because of a third variable that affects both).

In addition, experiments can also provide information about the direction and strength of the relationship between variables.

To know more about causal relationships, here

https://brainly.com/question/3223594

#SPJ4

--The given question is incorrect; the correct question is

"Researchers must use experiments to determine whether ______ relationships exist between variables."--

TICKETS Jamal has $40 to buy tickets to a performance for himself and his friends. buys a membership he can buy tickets for $5 each. How many tickets can he buy while remaining within his budget?

TICKETS Jamal has $40 to buy tickets to a performance for himself and his friends. buys a membership

Answers

Answer:

8 Tickets

Step-by-step explanation:

40 / 5 = 8

8. 5/40 comes to 8 sjjsjd

Does anyone knows how to do that?
I need to solve for x

Does anyone knows how to do that? I need to solve for x

Answers

Answer:

\(x=17\)°

Step-by-step explanation:

Because the diagonal lines are marked with arrows, we know that they are parallel. The two angles that are marked with measures are same-side interior angles. Same-side interior angles of parallel lines are supplementary, meaning that the sum of their measures is \(180\)°.

Now, with all of this information, we can set up the following equation and solve for \(x\):

\(115+4x-3=180\)

\(112+4x=180\) (Simplify LHS by combining like terms)

\(112+4x-112=180-112\) (Subtract \(112\) from both sides of the equation to isolate \(x\))

\(4x=68\) (Simplify)

\(\frac{4x}{4}=\frac{68}{4}\) (Divide both sides of the equation by \(4\) to get rid of \(x\)'s coefficient)

\(x=17\)° (Simplify)

Hope this helps!

PLEASE ANSWER ASAP!!

PLEASE ANSWER ASAP!!

Answers

In triangle ΔABC angle m∠A = 38.68°

What is an angle?

An angle is the space between of the point of intersection of two rays meeting at a common vertex.

Since we have triangle ΔABC and m∠B = 90 and the ratio BC/AC = 0.625. We desire to find angle A, we proceed as follows.

In  ΔABC, since m∠B = 90, this implies that ΔABC is a right-angled triangle.

Also, the ratio BC/AC = cosC

Since BC/AC = 0.625

⇒ cosC = 0.625

Taking inverse cosine of both sides, we have

C = cos⁻¹(0.625)

= 51.318°

≅ 51.32°

Also in ΔABC

m∠A + m∠B + m∠C = 180°  (sum of angles in a triangle)

So, m∠A = 180° - m∠B - m∠C

= 180° - 90° - 51.32°

= 90° - 51.32°

= 38.68°

So, angle m∠A = 38.68°

Learn more about angle in a triangle here:

https://brainly.com/question/29668874

#SPJ1

Exercise 1.5.12. Let (X, ddisc) be a metric space with the discrete metric ddisc.
(a) Show that X is always complete.
(b) When is X compact, and when is X not compact? Prove your claim. (Hint: the Heine-Borel theorem will be useless here since that only ap- plies to Euclidean spaces.)

Answers

Singular matrices have certain properties that distinguish them from non-singular matrices, and they play an important role in linear algebra and various applications.

What is determinant?

The determinant is a scalar value associated with a square matrix. It is a mathematical operation performed on a matrix that yields a single value. The determinant provides important information about the matrix, such as its invertibility and the scaling factor it applies to vectors.

Certainly! In linear algebra, a square matrix is a matrix that has the same number of rows and columns. A square matrix is said to be singular if its determinant is equal to zero.

The determinant of a matrix is a scalar value that can be computed from its elements. For a square matrix, the determinant represents a measure of its "scale factor" or how the matrix transforms vectors. If the determinant of a square matrix is zero, it means that the matrix does not have full rank and there are linear dependencies among its rows or columns.

When a matrix is singular, it does not have an inverse. The inverse of a matrix is a matrix that, when multiplied with the original matrix, gives the identity matrix. The identity matrix is a square matrix with ones on its main diagonal and zeros elsewhere. In other words, if a matrix A is singular, there is no matrix B such that A multiplied by B (AB) equals the identity matrix.

Singular matrices have some distinct properties. For example, the rows or columns of a singular matrix are linearly dependent, meaning that they can be expressed as a linear combination of other rows or columns in the matrix. This dependency causes the determinant to be zero.

Singular matrices are significant in linear algebra and have applications in various areas, including solving systems of linear equations, studying eigenvalues and eigenvectors, and analyzing linear transformations.

To know more adeterminant visit:

https://brainly.com/question/16981628

#SPJ4

complete question:

Explain the concept of singular matrices in linear algebra, including their properties and significance in various applications. Discuss the relationship between determinants and singular matrices, and explain why a singular matrix does not have an inverse. Provide examples and illustrations to support your explanation.

Given the inequality 4(n-5) <3(n + 11), determine which integer makes the inequality false.
S:{4}
S:{11}
S:{53}
S:{-8}​

Answers

The integer n = 53 will make the inequality 4(n - 5) < 3(n + 11) false

Inequality

In mathematics, a statement of an order relationship—greater than, greater than or equal to, less than, or less than or equal to—between two numbers or algebraic expressions.

In this expression, we can solve and find what makes it's true and take the odd one out.

4(n - 5) < 3(n + 11)

4n - 20 < 3n + 33

n < 53

From the options given, the value of n that will make the inequality true is less than 53 and that makes the integer 53 to be false.

Learn more on inequality here;

https://brainly.com/question/25275758

#SPJ1

What is the common ratio of the geometric sequence below?
-96, 48, -24, 12, -6...

Answers

(12)/(-6) =-2
(-24)/(12)=-2
(48)/(-24)=-2
(-96)/(48)=-2
The common ratio of geometric is -2

The average GPA for all college students is 2.95 with a standard deviation of 1.25. Answer the following questions: What is the average GPA for 50 MUW college students? (Round to two decimal places) What is the standard deivaiton of 50 MUW college students? (Round to four decimal places)

Answers

The average GPA for all college students is 2.95 with a standard deviation of 1.25.

Average GPA for 50 MUW college students = ?

Standard deviation of 50 MUW college students = ?

Formula Used: The formula to find average of data is given below:

Average = (Sum of data values) / (Total number of data values)

Formula to find the Standard deviation of data is given below:

$$\sigma = \sqrt{\frac{\sum_{i=1}^{n}(x_i-\overline{x})^2}{n-1}}$$

Here, $x_i$ represents each individual data value, $\overline{x}$ represents the mean of all data values, and n represents the total number of data values.

Calculation:

Here,Mean of GPA = 2.95

Standard deviation of GPA = 1.25

For a sample of 50 MUW college students,μ = 2.95 and σ = 1.25/√50=0.1768

The average GPA for 50 MUW college students = μ = 2.95 = 2.95 (rounded to 2 decimal places).

The standard deviation of 50 MUW college students = σ = 0.1768 = 0.1768 (rounded to 4 decimal places).

Average GPA for 50 MUW college students = 2.95

Standard deviation of GPA = 1.25For a sample of 50 MUW college students,μ = 2.95 and σ = 1.25/√50=0.1768

Therefore, the average GPA for 50 MUW college students is 2.95 (rounded to 2 decimal places).

The standard deviation of 50 MUW college students is 0.1768 (rounded to 4 decimal places).

To know more about average GPA visit:

brainly.com/question/32735198

#SPJ11

Find the x-intercepts of the graph

Find the x-intercepts of the graph

Answers

Answer:

(1,0) and (3,0)

Step-by-step explanation:

y=x^2-4x+3

To factor we need to know what numbers add up to -4 and multiply will equal to 3.

y=(x-3)(x-1)

The zeroes would be 3 and 1.

x=3  so y=0 for (x-3)

x=1 so y=0 for (x-1)

If right pls give me brainliest thank you.

Answer:

(1, 0) and (3, 0)

Step-by-step explanation:

\(y=x^2-4x+3\)

Plug y as 0 to find the x-intercepts.

\(0=x^2-4x+3\)

Factor right side.

\(0=x^2-1x-3x+3\)

\(0=x(x-1)-3(x-1)\)

\(0=(x-1)(x-3)\)

Set factors equal to 0.

\(x-1=0\\x=1\\x-3=0\\x=3\)

x=1 or x=3 when y=0

2. pvalue
3.critical value
4.test value
5.make a desision
Noise Levels in Hospitals In a hospital study, it was found that the standard deviation of the sound levels from 30 areas designated as "casualty doors" was 6.4 dBA and the standard deviation of 28 areas designated as operating theaters was 4.1 dBA. At a 0.10, can you substantiate the claim that there is a difference in the standard deviations? Use a, for the standard deviation of the sound levels from areas designated as "casualty doors." Part 1 of 5 (a) State the hypotheses and identify the claim. H_0: sigma_1^ = sigma_2^ _____
H_1: sigma_1^ ≠ sigma_2^ _____
This hypothesis test is a___test.

Answers

The hypotheses for the test are H₀: σ₁² = σ₂² and H₁: σ₁² ≠ σ₂². This is a two-tailed test to assess if there is a difference in the standard deviations of sound levels between the areas designated as "casualty doors" and operating theaters. The claim being investigated is whether or not there is a difference in the standard deviations.

The hypotheses for the test are:

H₀: σ₁² = σ₂² (There is no difference in the standard deviations of the sound levels between the areas designated as "casualty doors" and operating theaters.)

H₁: σ₁² ≠ σ₂² (There is a difference in the standard deviations of the sound levels between the areas designated as "casualty doors" and operating theaters.)

This hypothesis test is a two-tailed test because the alternative hypothesis is not specifying a direction of difference.

To substantiate the claim that there is a difference in the standard deviations, we will conduct a two-sample F-test at a significance level of 0.10, comparing the variances of the two groups.

To know more about hypothesis test refer here:

https://brainly.com/question/29996729#

#SPJ11

A rectangle is drawn so that the width is 3 feet shorter than the length. The area of the rectangle is 10 square feet. Find the length of the rectangle.

Answers

It’s 7929281 becuase idc
length=5ft
width= 2ft

10ft=l x w
w= l -3

10ft= l(l-3)
0= l^2 -3l-10
0= (l-5)(l+2)
l=5, l≠-2 (because a measurement can’t be negative)

w= 5-3
w=2

I don’t know I just need the answer

I dont know I just need the answer

Answers

5.6 I think but I’m not 100% sure just use
Other Questions
Explain America's desire to move westward and name two conflicts that occurred The ______ approach to consumer behavior research includes the idea that any behavior is subject to multiple interpretations rather than one single explanation.A.Consumer Culture Theory (CCT)B.individualisticC.pasticheD.objectivityE.positivist Anne has a sample of a substance. Its volume is 20 cm3, and its mass is 100 grams. What is the samples density? The samples density is g/cm3. Kristin is saving up money to go on a trip around the world next year. In order to make enough to pay for her trip, Kristin has to work at least 260 days this year.Which of the following inequalities represents Kristin's possible number of workdays, d Abus started with 48 passengers. The bus droppedoff 27 passengers and picked up 22 passengers.How many passengers are left on the bus? You are dispatched to a beach where a patient has been sunburned. Upon arrival, you find a 23-year-old woman who was sunbathing and fell asleep. She is alert and oriented, in moderate pain, and has blisters covering all four extremities. She also has blisters on her abdomen, face, and chest. You should consider this patient to have ________ burns.A) CriticalB) ModerateC) SuperficialD) Minor summarize the test- construction strategy of content validation I need help(a lot) I will mark brainlist for best answer A country is a net oil importer. An increase in global oil price is likely to Increase that country's exports. Decrease that country's GDP. Increase that country's current account. Question 45 (1 point) Saved What is seignourage? Seignourage is the act of assigning honorary titles of nobility Seignourage happens when a Government offers physical assets as collateral on its debt: When legal tender money is created, seignourage is the difference between the value of the money and the cost of creating it. Seignourage is another word for interest. It is the interest a Government owes on its debt Which is an example of mechanical weathering? ...................... WHAT IS THE AVREGE SIZE OF A MALE REPRODUCTIVE ORGAN AGE 13- 15 -20 Maria Gonzalez, Ganado's Chief Financial Officer, estimates the risk-free rate to be 3.50%, the company's credit risk premium is 4.20%, the domestic beta is estimated at 1.07, the international beta is estimated at 0.74, and the company's capital structure is now 35% debt. The expected rate of return on the market portfolio held by a well-diversified domestic investor is 9.50% and the expected return on a larger globally integrated equity market portfolio is 8.50%. The before-tax cost of debt estimated by observing the current yield on Ganado's outstanding bonds combined with bank debt is 7.90% and the company's effective tax rate is 35%. For both the domestic CAPM and ICAPM, calculate the following:a. Ganado's cost of equityb. Ganado's after-tax cost of debtc. Ganado's weighted average cost of capital Dorian Gray takes out loans with each of Bank 1 (for $10,000), Bank 2 (for $20,000), Bank 3 (for $30,000) and Bank 4 ($40,000) granting an interest in a painting valued at $200,000, to secure each loan. Mr. Gray subsequently defaults on all four of the loans. Bank 1 has first priority, Bank 2 has second priority, Bank three has third priority and Bank 4 has fourth priority. Bank 3 decides to foreclose on the painting.a. Assuming that the cost of the foreclosure sale is $5,000, and that the sale yields $50,000, how much money will each Bank receive from the sale?b. At the conclusion of the sale, which bank(s), if any, will still have a security interest in the painting? If the greatest common divisor of a and b is 100, what is the greatest commondivisor of 3a^2? and 3b^2? In the context of the "2 by 2 by 2" idealized factor-proportions model, assume the following facts about the world: In each country (Home and Foreign) coal is the labor-intensive good; Home is the labor-abundant country.According to the model, the establishment of trade between Home and Foreign will ultimately bring A. an equalization of factor prices but a continued difference in the relative prices of goods. B. continued differences in both the relative prices of goods and factor prices. C. an equalization of the relative prices of goods but a continued difference in factor prices. D. an equalization of both the relative prices of goods and factor prices. Show your work for Question #4. Solve this system by substitution. y = 6x - 17 You place a strip of copper, 2.0 mm thick and 1.50 cm wide, in a uniform 0.40-T magnetic field. When you run a 75-A current in the x-direction, you find that the potential at the bottom of the slab is 0.81V higher than at the top. From this measurement, determine the concentration of mobile electrons in copper. India was granted its independence from Great Britain ...O before World War 1after World War 1Obefore World War 2after World War 2 PX90 is marketed as a home fitness system designed to get you in the best shape of your life. One campaign highlights individuals who were in good shape before starting PX90 and who are in even better shape after starting PX90. In this campaign, the marketers of PX90 are attempting to stimulate problem recognition by: a. reminding consumers that a problem exists and proposing a solution. b. creating a new ideal state and then proposing a solution. c. creating dissatisfaction with an actual state then proposing a solution. d. creating satisfaction with the actual state. e. All of the above