Given f(x)=3x^2+kx+9, and the remainder when f(x) is divided by x-3 is 6, then what is the value of k?

Answers

Answer 1

Answer:

k = - 10

Step-by-step explanation:

6=9+3(k+9)

3(k+9)=-3

k+9= -1

k= -10

Given F(x)=3x^2+kx+9, And The Remainder When F(x) Is Divided By X-3 Is 6, Then What Is The Value Of K?
Answer 2

The value of k is -10.

What is Division?

Division is one of the operation in mathematics where number is divided  into equal parts as that of a definite number.

Given a function 3x² + kx + 9.

Divide the function with x - 3.

Do the long division process.

After doing the long division,

(3x² + kx + 9) / (x - 3), we get the quotient as 3x + (k + 9) and the remainder as 9 + 3(k + 9).

9 + 3(k + 9) = 6

3(k + 9) = -3

k + 9 = -1

k = -1 - 9

k = -10

Hence the number k has the value -10.

Learn more about Division here :

https://brainly.com/question/21416852

#SPJ2


Related Questions

A circle is inscribed in an isosceles trapezoid with bases of 8 cm and 2 cm. Find the probability that a randomly selected point inside the trapezoid lies on the circle

Answers

Given that a circle is inscribed in an isosceles trapezoid with bases of 8 cm and 2 cm. We need to find the probability that a randomly selected point inside the trapezoid lies on the circle.

The isosceles trapezoid is shown below: [asy] draw((0,0)--(8,0)--(3,5)--(1,5)--cycle); draw((1,5)--(1,0)); draw((3,5)--(3,0)); draw((0,0)--(1,5)); draw((8,0)--(3,5)); draw(circle((2.88,2.38),2.38)); label("$8$",(4,0),S); label("$2$",(1.5,5),N); [/asy]Let ABCD be the isosceles trapezoid,

where AB = 8 cm, DC = 2 cm, and AD = BC.

Since the circle is inscribed in the trapezoid, we can use the following formula:2s = AB + DC = 8 + 2 = 10 cm

Where s is the semi-perimeter of the trapezoid. Also, let O be the center of the circle. We can draw lines OA, OB, OC, and OD as shown below: [asy] draw((0,0)--(8,0)--(3,5)--(1,5)--cycle); draw((1,5)--(1,0)); draw((3,5)--(3,0)); draw((0,0)--(1,5)); draw((8,0)--(3,5)); draw(circle((2.88,2.38),2.38)); label("$A$",(0,0),SW); label("$B$",(8,0),SE); label("$C$",(3,5),N); label("$D$",(1,5),N); label("$O$",(2.88,2.38),N); label("$8$",(4,0),S); label("$2$",(1.5,5),N); draw((0,0)--(2.88,2.38)--(8,0)--cycle); label("$s$",(3,0),S); label("$s$",(1.44,2.38),E); [/asy]Since O is the center of the circle, we have:OA = OB = OC = OD = rwhere r is the radius of the circle.

Also, we have:s = OA + OB + AB/2 + DC/2s = 2r + 2s/2s = r + 5 cmWe can solve for r:r + 5 cm = 10 cmr = 5 cmNow that we know the radius of the circle, we can find the area of the trapezoid and the area of the circle.

Then, we can find the probability that a randomly selected point inside the trapezoid lies on the circle as follows:Area of trapezoid = (AB + DC)/2 × height= (8 + 2)/2 × 5= 25 cm²Area of circle = πr²= π(5)²= 25π cm²Therefore, the probability that a randomly selected point inside the trapezoid lies on the circle is:

Area of circle/Area of trapezoid= 25π/25= π/1= π

To know more about probability, visit:

https://brainly.com/question/31828911

#SPJ11

The probability that a randomly selected point inside the trapezoid lies on the circle is 0.399 or 39.9%. Therefore, option (A) is the correct answer.

The circle is inscribed in an isosceles trapezoid with bases of 8 cm and 2 cm.

Inscribed Circle of an Isosceles Trapezoid

Therefore, the length of the parallel sides (AB and CD) is equal.

Let the length of the parallel sides be ‘a’. Then, OB = OD = r (let)

It is also given that the lengths of the parallel sides of the trapezoid are 8 cm and 2 cm.

Then, its height is given by:

h = AB - CD / 2 = (8 - 2) / 2 = 3 cm

Therefore, the length of the base BC of the right-angled triangle is equal to ‘3’.

Then, the length of the other side (AC) can be given as:

AC = sqrt((AB - BC)² + h²) = sqrt((8 - 3)² + 3²) = sqrt(34) cm

The area of the trapezoid can be calculated as follows:

Area of the trapezoid = 1/2 (sum of the parallel sides) x (height)A = 1/2 (8 + 2) x 3A = 15 sq. cm.

The area of the circle can be given by:

Area of the circle = πr²πr² = A / 2πr² = 15 / (2 x π)

Therefore, r² = 2.39

r = sqrt(2.39) sq. cm.

Now, the probability that a randomly selected point inside the trapezoid lies on the circle can be calculated by dividing the area of the circle by the area of the trapezoid:

P (point inside the trapezoid lies on the circle) = Area of the circle / Area of the trapezoid

P = πr² / 15

P = π (2.39) / 15

P = 0.399 or 39.9%

The probability that a randomly selected point inside the trapezoid lies on the circle is 0.399 or 39.9%.

Therefore, option (A) is the correct answer.

To know more about probability, visit:

https://brainly.com/question/31828911

#SPJ11

Write a function trapezium_integrator(f, start, end, num_traps) that uses the Trapezium Rule to evaluate the integral ∫endstartf(x)dx where f, start, and end are defined in the formula above, and num_traps is the number of trapeziums that the integration interval should be divided into.

Notes:

You may assume num_traps >= 1
Hint: This should be a simple modification of your code from the last question.
We are still expecting you to compute the width of each trapezium and then use a for loop to solve this problem, iterating over the trapeziums to sum their areas. A more efficient approach, using numpy and avoiding any explicit loops, is the topic of one of the challenge questions.

Answers

The function trapezium_integrator uses the Trapezium Rule to approximate the value of a definite integral. It takes four parameters: f, which represents the function to be integrated, start and end, which specify the interval of integration, and num_traps, the number of trapeziums used to approximate the integral.

In the Trapezium Rule, the interval of integration is divided into multiple trapeziums of equal width. The area of each trapezium is calculated as the sum of the lengths of its parallel sides divided by 2, multiplied by its height (the difference between the function values at the two endpoints of the trapezium). The areas of all trapeziums are then summed to obtain an approximation of the integral.

The function calculates the width of each trapezium by dividing the interval length by the number of trapeziums. It then uses a for loop to iterate over the trapeziums, accumulating their areas. The final result is returned as the approximation of the integral.

By dividing the interval into smaller trapeziums, the Trapezium Rule provides a reasonably accurate estimate of the integral. However, for highly oscillatory or irregular functions, a large number of trapeziums may be required to achieve sufficient accuracy. In such cases, more sophisticated numerical integration methods may be more appropriate.

Learn more about definite integral here:

https://brainly.com/question/30760284

#SPJ11

What is the simplified form of the following expression? Assume x>0. 4 square root 3 over 2x

Answers

Answer:

the answer is B)

4√24x^3/2x

Solution:

The answer is B

Step-by-step explanation:

I just took the test.

Find the area bounded by the curves y= and y= x2 Round the answer to two decimal places. Question 4 3 pts A company's marginal cost function is given by MC(x)= VX + 30 Find the total cost for making the first 10 units.

Answers

The total area of the regions between the curves is 1/3 square units

The total cost for making the first 10 units is 7.79

Calculating the total area of the regions between the curves

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

y = √x and y = x²

With the use of graphs, the curves intersect at

x = 0 and x = 1

So, the area of the regions between the curves is

Area = ∫x² - √x

Integrate

[tex]Area = \frac{x^3}{3} - \frac{2x^\frac32}{3}[/tex]

Recall that x = 0 and x = 1

So, we have

[tex]Area = (\frac{0^3}{3} - \frac{2 * 0^\frac32}{3}) - (\frac{1^3}{3} - \frac{2 * 1^\frac32}{3} )[/tex]

Evaluate

Area =  0 + 1/3

Evaluate

Area =  1/3

Hence, the total area of the regions between the curves is 1/3 square units

Calculating the total cost

Given that

MC(x) = √(x + 30)

Integrate to calculate the cost function

So, we have

[tex]C(x) = \frac{2}{3}(x + 30)^\frac23[/tex]

For the first 10, x = 10

So, we have

[tex]C(10) = \frac{2}{3}(10 + 30)^\frac23[/tex]

Evaluate

C(10) = 7.79

Hence, the total cost for making the first 10 units is 7.79

Read more about area at

brainly.com/question/15122151

#SPJ4

Given the definitions of f(x) and g(x) below, find the value of (gof)(1).
f(x) = 2x² – 2x – 4
g(x) = -5x + 14

Answers

Answer:

[tex](g*f)(x) = 34[/tex]

Step-by-step explanation:

For sake of clarity, [tex](g * f)(x) = g(f(x))[/tex]

First, find [tex]f(1)[/tex]

[tex]f(1) = 2(1)^2 - 2(1) - 4\\f(1) = 2-2-4 \\f(1)=-4[/tex]

Then, take what you got for [tex]f(1)[/tex] and plug that into [tex]g(x)[/tex].  In this case, [tex]f(1) = -4[/tex]

[tex]g(-4) = -5(-4) + 14\\g(-4)= 20 + 14\\g(-4) = 34[/tex]

Please make sure to mark brainliest if this satisfies your

What is the simplified form of the expression below?
3+ 4i
4 - 2i

Answers

Answer:

7 + 2i is the simplified form

Step-by-step explanation:

Point (2.-3) on glx) is transformed by -g[4(x+2)]. What is the new point? Show your work

Answers

After considering the given data we conclude that the new point generated is (2,3), under the condition that g(x) is transformed by [tex]-g[4(x+2)][/tex].

To evaluate the new point after the transformation of point (2,-3) by -g[4(x+2)], we can stage x=2 and g(x)=-3 into the expression [tex]-g[4(x+2)][/tex]and apply  simplification to get the new y-coordinate. Then, we can combine the new x-coordinate x=2 with the new y-coordinate to get the new point.
Stage x=2 and g(x)=-3 into [tex]-g[4(x+2)]:[/tex]
[tex]-g[4(2+2)] = -g = -(-3) = 3[/tex]
The new y-coordinate is 3.
The new point is (2,3).
Hence, the new point after the transformation of point (2,-3) by [tex]-g[4(x+2)][/tex] is (2,3).
To learn more about transformation
https://brainly.com/question/29788009
#SPJ4

Can someone state the range of this function pleaseee?

Answers

Answer:

Range = [0, ∞)

Step-by-step explanation:

Range is the y-values

For this question y starts at 0 and just continually goes up so:

Range = [0, ∞)

What is the range for the following data?
52, 32, 61, 82, 63

Answers

Answer:

The range would be 50.

Step-by-step explanation:

Range is found by putting a list or set of numbers in order, then subtracting the lowest number from the highest.

32, 61, 63, 52, 82

82 - 32 = 50

Find the zeros of the following quadratic functions.
3) x2 + 5x + 6 = 0

Answers

the zeros are x= -6 & x= 1

In 3^6, 6 is called ___.



base


exponent

Answers

The answer is B, Exponent

Step-by-step explanation:

the correct answer is exponent because 6 is its power.

hope this answer will help u.

have a great time.

A rectangular prism has a volume of 600 cubic inches lf the height of the prism is 5 inches and the width is 10 inches what is the length of the prism? Enter your answer in the box.​

Answers

Answer:

3 inches

Step-by-step explanation:

got it right on edg

HELP



4(x-2+y)=???????

Answers

Answer:

4+4−8

Step-by-step explanation:

ht
Which of the following is an equivalent expression to the expressione,
А
B
D
ANSWER QUICK PLZ

Answers

Answer A is your correct answer

Find the median of the data.

93,81,94,71,89,92,94,99

Answers

Answer: 92.5

So to find median all we have to do is rearange it from low - high and get the middle number

71  81  89  92  93  94  94  99

So take this and you know the middle is right in between 92 and 93

71  81  89  92      |      93  94  94  99

All you have to do then is take the mean of 92 and 93 (so do [92+93]/2)

Answer is 92.5

7. An article in a journal reports that 34% of American fathers take no responsibility for child care. A researcher claims that the figure is higher for fathers in the town of Littleton. A random sample of 225 fathers from Littleton, yielded 97 who did not help with child care. Using a .05 level of significance test the claim that the proportion is at least 34%.

Answers

The calculated value of z = 2.80 > the Critical value of z = -1.645, we reject the null hypothesis.

Hence, the claim that the proportion is at least 34% is rejected.

Therefore, the researcher's claim is true that the figure is higher for fathers in Littleton.

Null hypothesis:

H0: p ≥ 0.34

Alternative hypothesis:

Ha: p < 0.34

where:p = proportion of Littleton fathers who do not help with childcare

Here, the level of significance, α = 0.05

Level of significance = α = 0.05

The test statistics for a proportion is given as z-test.  

The formula for calculating z-score for a proportion is: z = (p - P) / sqrt[P(1 - P) / n]

where:

P = Population proportion

p = Sample proportion

n = Sample size

The calculated value of z-statistics can be compared with the critical value of z-score from the standard normal distribution table at a particular level of significance.

If the calculated value of z is greater than the critical value of z, then we reject the null hypothesis; otherwise, we fail to reject the null hypothesis.

Calculating the z-statistic:

Here, Sample size n = 225

Sample proportion

p = 97/225

= 0.4311

Population proportion

P = 0.34z

= (p - P) / sqrt[P(1 - P) / n]z

= (0.4311 - 0.34) / sqrt[(0.34)(0.66) / 225]z

= 2.80

Since the alternative hypothesis is one-tailed (Ha: p < 0.34), the critical value of z at α = 0.05 can be found as follows:

The critical value of z = zα

= -1.645

Since the calculated value of z = 2.80 > the Critical value of z = -1.645, we reject the null hypothesis.

Hence, the claim that the proportion is at least 34% is rejected.

Therefore, the researcher's claim is true that the figure is higher for fathers in Littleton.

To know more about normal distribution visit:

https://brainly.com/question/15103234

#SPJ11

44% of what number is 400?

Answers

Answer:

909.09

Step-by-step explanation:

400 divided by 44% is about 909.09.

909 !!!!!!!!!!!!!!!!!!!!!

Central Airlines claims that the median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming, is $605. This claim is being challenged by the Association of Travel Agents, who believe the median price is less than $605. A random sample of 25 round-trip tickets from Chicago to Jackson Hole revealed 11 tickets were below $605. None of the tickets was exactly $605. State the null and alternate hypotheses.

Answers

Null hypothesis is that the median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming is $605. Alternative hypothesis is that the median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming is less than $605.

The median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming is $605.

The median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming is less than $605.As per the given question, Central Airlines claims that the median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming is $605. But, this claim is being challenged by the Association of Travel Agents, who believes that the median price is less than $605. Hence, we need to test whether the median price is less than $605 or not.Hence,Null hypothesis is that the median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming is $605. Alternative hypothesis is that the median price of a round-trip ticket from Chicago, Illinois, to Jackson Hole, Wyoming is less than $605.

Learn more about Null hypothesis here:

https://brainly.com/question/30821298

#SPJ11

Find the solution to the linear system of differential equations { 146 +24y 12x + 20y satisfying the initial conditions X(0) = 3 and Y(0) = 3. x(t)=__ y(t)=__

Answers

Therefore, the solution to the given system of differential equations, with the initial conditions x(0) = 3 and y(0) = 3, is:

x_(t) = 146t + 24yt + 3

y_(t) = (876t + 21) / ((-144) - 10t)

To solve the given linear system of differential equations, let's rewrite the system in a more standard form:

dx/dt = 146 + 24y

dy/dt = 12x + 20y

We'll use the initial conditions x_(0) = 3 and y_(0) = 3 to find the specific solution.

To solve the system, we can use the method of integrating factors.

Solve the first equation:

dx/dt = 146 + 24y

Rearrange the equation to isolate dx/dt:

dx = (146 + 24y) dt

Integrate both sides with respect to x:

∫dx = ∫(146 + 24y) dt

x = 146t + 24yt + C_(1) ---(1)

Solve the second equation:

dy/dt = 12x + 20y

Rearrange the equation to isolate dy/dt:

dy = (12x + 20y) dt

Integrate both sides with respect to y:

∫dy = ∫(12x + 20y) dt

y = 6x + 10yt + C_(2) ---(2)

Now, we'll apply the initial conditions x_(0) = 3 and y_(0) = 3 to find the values of C_(1) and C_(2).

From equation (1), when t = 0, x = 3:

3 = 146(0) + 24(3)(0) + C_(1)

C_(1) = 3

From equation (2), when t = 0, y = 3:

3 = 6(0) + 10(3)(0) + C_(2)

C_(2) = 3

Now, substituting the values of C_(1) and C_(2) back into equations (1) and (2), we get:

x = 146t + 24yt + 3

y = 6x + 10yt + 3

Simplifying further:

x = 146t + 24yt + 3

y = 6(146t + 24yt + 3) + 10yt + 3

x = 146t + 24yt + 3

y = 876t + 144y + 18 + 10yt + 3

x = 146t + 24yt + 3

y - 154y - 10yt = 876t + 18 + 3

(-144y) - 10yt = 876t + 21

y = (876t + 21) / (-144 - 10t)

Therefore, the solution to the given system of differential equations, with the initial conditions x(0) = 3 and y(0) = 3, is:

x_(t) = 146t + 24yt + 3

y_(t) = (876t + 21) / ((-144) - 10t)

To know more about differentiation:

https://brainly.com/question/31230190

#SPJ4

Find the value of X for which the following fraction is undefined
2x²+x-15
________
2/3x²-6

Answers

Answer: ±√2

Step-by-step explanation: A fraction is undefined when its denominator is =0 or undefined. so we need to get 2/3x²-6=0 or undefined. so we can also do 3x^2-6=0. Solving yields ±√2!

According to a 2014 poll by the American Academy of Ophthalmology, Americans break down like this when it comes to eye color:

• Brown eyes: 45 %

• Blue eyes: 27 %

• Hazel eyes: 18%

• Green eyes: 9%

• Other: 1%

Consider a random group of 20 American people. Let a random variable X be the number of Americans in this group with green eyes.

(a) Argue that this is a binomial experiment.

(b) Find the probability that

i. None have green eyes

ii. Nine have green eyes

iii. At most three have green eyes

iv. At least four have green eyes

v. If four people out of twenty have green eyes. Is it unusual?

(c) What is the mean and standard deviation of this distribution?

Answers

This is a binomial experiment because it meets all the necessary conditions: a fixed number of trials (20 people in the group), independence of each trial (assuming eye color is independent), two possible outcomes (green eyes or not), a constant probability of success (9% for having green eyes), and the random variable representing the count of successes (number of Americans in the group with green eyes, denoted as X).

To argue that this is a binomial experiment, we need to check if the following conditions are met:

1. The experiment consists of a fixed number of trials: In this case, we are considering a fixed number of trials equal to 20, as we have a random group of 20 American people.

2. Each trial is independent: We assume that the eye color of each person in the group is independent of the others.

3. There are only two possible outcomes for each trial: The outcomes are either having green eyes or not having green eyes.

4. The probability of success is constant for each trial: The probability of an American having green eyes is fixed at 9% for each individual in the population.

5. The random variable X represents the count of successes: In this case, X represents the number of Americans in the group with green eyes.

Since all these conditions are satisfied, we can conclude that this is a binomial experiment.

To know more about binomial experiment refer here:

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

#SPJ11

Isaiah is decorating the outside of a box in the shape of a triangular prism. The figure
below shows a net for the box.
What is the surface area of the box, in square meters, that
Isaiah decorates

Answers

Answer:

389.19 m²

Step-by-step explanation:

The surface area of the box = area of the two equal triangles + area of the 3 different rectangles

✔️Area of the two equal triangles:

Area = 2(½*base*height)

base = 7 m

height = 8 m

Area of the two triangles = 2(½*7*8) = 56 m²

✔️Area of rectangle 1:

Area = Length*Width

L = 13 m

W = 7 m

Area of rectangle 1 = 13*7 = 91 m²

✔️Area of rectangle 2:

L = 13 m

W = 8 m

Area of rectangle 2 = 13*8 = 104 m²

✔️Area of rectangle 3:

L = 13 m

W = 10.63 m

Area of rectangle 3 = 13*10.63 = 138.19 m²

✅Surface Area of the box = 56 + 91 + 104 + 138.19 = 389.19 m²

i’m lost on this help would be nice

Answers

Answer:

3x - 4 = 14

+4. +4

3x = 18

÷3. ÷3

x = 6

Solve the system by graphing
y = -3/4x + 6
y = 2x - 5

Answers

Answer:

X= 4. Y = 3.

Step-by-step explanation:

If you have a graphing calculator, put the first equation into Y1. And second equation into Y2. Then, find the intersection of the two equations. That's how you find your answer.

ABM Services paid a $4.15 annual dividend on a day it closed at a price of $54 per share. What
was the yield?

Answers

Answer:

the yield is 7.68%

Step-by-step explanation:

The calculation of the yield is given  below:

we know that

Yield is

= Annual dividend ÷ Price per share

= $4.15 ÷ $54

= 7.68%

Here we divide the annual dividend by the price per share in order to determine the yield  

hence, the yield is 7.68%  

And, the same would be considered

Can someone help me on this

Answers

Answer:

Y = 10 I believe

Step-by-step explanation:

To solve this we need to find what number, times 6, equals 18 - it's fairly easy to find the answer is three.

So what, minus seven, equals 3?

Sammy counts the number of people in one section of the school auditorium. He counts 18 female students, 16 male students, and 6 teachers. There are 720 people in the auditorium. Consider the probability of selecting one person at random from the auditorium

Answers

Correct Question:

He counts 18 female students, 16 male students, and 6 teachers. There are

720 people in the auditorium. Consider the probability of selecting one person

at random from the auditorium.

Which of these statements are true?

Choose all that apply.

A:  The probability of selecting a teacher is 6%.

B : The probability of selecting a student is 85%.

C : The probability of selecting a male student is 32%.

D : The probability of selecting a female student is 45%.

Step-by-step explanation:

Option B  and D are correct because

The total number of people in one cross section = 18 + 16 + 6 = 40.

A = The probability of selecting a teacher is = (6/40)x100 = 15 % not equal to 6 %

B = The probability of selecting a male student is = (34/40)x100 = 85%

C = The probability of selecting a male student is = (16/40)x100 = 40 % not equal to 32 %

D : The probability of selecting a female student is = (18/40)x100= 45%

how do you solve for the x ?

Answers

Answer:

x = -8

Step-by-step explanation:

these angles are vertical, therefore they are equal

x + 78 = 70

x = -8

The graph of which function(s) will contain the point (4, 12)?

y = x + 8
y = 3x
y = 2x
y = x + 6

(one or more than one)

Answers

Answer:

y=3x

Step-by-step explanation:

Rewrite the expression using a DIVISION SYMBOL: "The quotient of m and 7."

Answers

Answer:

m ÷ 7

Step-by-step explanation:

"Quotient" means you're dividing, so this just means you're dividing m by 7.

Other Questions
We have observed the following annual return data on large company stocks (S&P500 index) for the past five years: Year Annual Return2017 21.83% 2018 -4-38% 2019 31.49%2020 18.40% 2021 28.71% Calculate the average return and standard deviation of stock returns for the 2017-2021 sample period. why did ferdinand and isabella most likely pursue the goals reflected by the excerpt? 5. A man walks exactly 10 times around a quarter-mile track. What is his displacement? 6. Due to restrictions in your municipality, you are not allowed to park your vehicle near the market. All vehicles should be park at a certain parking lot. At a parking spot where you leave your vehicle, it takes you to walk 10 mins at the rate of 30 m/min due east on Croco Street to go to the grocery store. After shopping, you go back to the parking spot by traveling west on Croco Street. a. What is your distance traveled? b. What is your displacement? A Linux administrator is testing a new web application on a local laptop and consistently shows the following 403 errors in the laptop's logs: The web server starts properly, but an error is generated in the audit log. Which of the following settings should be enabled to prevent this audit message? you bring your cat to the veterinarian for her yearly check-up. the veterinarian tells you that there is a 75% probability that your cat has a kidney disorder or is diabetic, with a 40% chance it has kidney disorder and a 50% chance it is diabetic. what is the probability that your cat has both a kidney and is diabetic? Which of the following best accounts for whymalleability occurs?(A) The highly flexible structure of the atoms due to lackof an internal structure.(B) The high potential energy of the substance due to thefree floating electrons.(C) The ability of the cations to slide past one another due to the delocalization of the electrons.(D) The repulsion of the cations for each other causes the solid to easily spread with little resistance. 3. Find the inter-quartile range of the following Scrabble scores: 120, 150, 201, 185, 201, 162, 210 A. 12 C. 90 B. 51 D. 15 Examples:No correlation: Height of a student and good gradesThe height of a student has no relationship to good grades.A correlation but not causation: Good SAT scores and good gradesMany times, you will find students with good SAT scores also making good grades, but good SAT scores do not cause good grades. Many times there are other variables, such as good study habits, that contribute to both.Causation: Study time and good gradesThe amount of time a student studies does CAUSE grades to be GOOD. Note: Causation statements are not the same as a statement in logic. For example: If you jump in a swimming pool, you will get wet. If you dont jump in the swimming pool, you will not get wet. This will occur all the time if the pool is full of water. Causation is a little different. If you study, you are not guaranteed good grades. If you dont study, you are not guaranteed bad grades. We still can say that study time is one major cause of good grades.Assignment:Find an example of an article that that relates two variables. Is the article stating that the two variables are correlated or that they have a causal relationship? Does the article confuse correlation and causation? Discuss other variables that could contribute to the relationship between the variables. explain uber's business model and deduce its strategic intent. Three disks each of diameter 10 cm are to be placed inside a rectangular region. Determine the region (a) of least perimeter, (b) of least area. Which of the following statements best defines a factorial ANOVA?a.The analysis of variance to examine the effects of multiple independent variables on one dependent variable concurrentlyb.The analysis of variance to examine the effect of one independent variable on multiple dependent variables concurrentlyc.The analysis of variance to examine the effect of multiple dependents variables on one independent variable concurrentlyd.The analysis of variance to examine the effects of one dependent variable on multiple independent variables concurrently write the details from the phone calling to the message form what have dr. karl rosengren studies of magic revealed about cognitive development? arrival of in-order segment with expected sequence number. all data up to expected sequence number already acknowledged. please calculate greene sales sustainable and actual growth rates from 2021 through 2026. note that actual rates are based on a flat growth rate assumption during this period. The average and standard deviation for the number of employees at hardware stores around Australia are 89 and 34 respectively. If a sample of 41 stores were chosen, find the sample average value above which only 2.5% of sample averages would lie. Give your answer to the nearest whole number of employees. What global entry strategy options do firms have? How should they choose between different options when internationalising their businesses? Discuss the potential managerial challenges Calculate the lower confidence limit (LCL) and upper confidence limit (UCL) of the mean for each of the following.a. x=380, n=441, o=50, and = 0.05 b. x=355, n=437, o = 225, and = 0.01 Which describes the steps in the correct order for an enzyme-catalyzed reaction? A trapeziod has an buse of length 10cm, and a hight of 5 m What is the missing venght of the base