Insert the following customer into the CUSTOMER table, using the Oracle sequence created in Problem 20 to generate the customer number automatically:- 'Powers', 'Ruth', 500. Modify the CUSTOMER table to include the customer's date of birth (CUST_DOB), which should store date data. Modify customer 1000 to indicate the date of birth on March 15, 1989. Modify customer 1001 to indicate the date of birth on December 22,1988. Create a trigger named trg_updatecustbalance to update the CUST_BALANCE in the CUSTOMER table when a new invoice record is entered. (Assume that the sale is a credit sale.) Whatever value appears in the INV_AMOUNT column of the new invoice should be added to the customer's balance. Test the trigger using the following new INVOICE record, which would add 225,40 to the balance of customer 1001 : 8005,1001, '27-APR-18', 225.40. Write a procedure named pre_cust_add to add a new customer to the CUSTOMER table. Use the following values in the new record: 1002 , 'Rauthor', 'Peter', 0.00 (You should execute the procedure and verify that the new customer was added to ensure your code is correct). Write a procedure named pre_invoice_add to add a new invoice record to the INVOICE table. Use the following values in the new record: 8006,1000, '30-APR-18', 301.72 (You should execute the procedure and verify that the new invoice was added to ensure your code is correct). Write a trigger to update the customer balance when an invoice is deleted. Name the trigger trg_updatecustbalance2. Write a procedure to delete an invoice, giving the invoice number as a parameter. Name the procedure pre_inv_delete. Test the procedure by deleting invoices 8005 and 8006 .

Answers

Answer 1

Insert the following customer into the CUSTOMER table, using the Oracle sequence created in Problem 20 to generate the customer number automatically:- 'Powers', 'Ruth', 500.

Modify the CUSTOMER table to include the customer's date of birth (CUST_DOB), which should store date data. Alter table customer add cust_dob date; Modify customer 1000 to indicate the date of birth on March 15, 1989.Update customer set cust_dob = '15-MAR-1989' where cust_id = 1000;

Modify customer 1001 to indicate the date of birth on December 22,1988.Update customer set cust_dob = '22-DEC-1988' where cust_id = 1001; Create a trigger named trg_updatecustbalance to update the CUST_BALANCE in the CUSTOMER table when a new invoice record is entered.

CREATE OR REPLACE TRIGGER trg_updatecustbalance AFTER INSERT ON invoice FOR EACH ROWBEGINUPDATE customer SET cust_balance = cust_balance + :new.inv_amount WHERE cust_id = :new.cust_id;END;Whatever value appears in the INV_AMOUNT column of the new invoice should be added to the customer's balance.

Test the trigger using the following new INVOICE record, which would add 225,40 to the balance of customer 1001 : 8005,1001, '27-APR-18', 225.40.Insert into invoice values (8005, 1001, '27-APR-18', 225.40);Write a procedure named pre_cust_add to add a new customer to the CUSTOMER table.

Use the following values in the new record: 1002, 'Rauthor', 'Peter', 0.00.

CREATE OR REPLACE PROCEDURE pre_cust_add(customer_id IN NUMBER, firstname IN VARCHAR2, lastname IN VARCHAR2, balance IN NUMBER)AS BEGIN INSERT INTO customer (cust_id, cust_firstname, cust_lastname, cust_balance) VALUES (customer_id, firstname, lastname, balance);END;

Write a procedure named pre_invoice_add to add a new invoice record to the INVOICE table. Use the following values in the new record: 8006,1000, '30-APR-18', 301.72.

CREATE OR REPLACE PROCEDURE pre_invoice_add(invoice_id IN NUMBER, customer_id IN NUMBER, invoice_date IN DATE, amount IN NUMBER)ASBEGININSERT INTO invoice (inv_id, cust_id, inv_date, inv_amount) VALUES (invoice_id, customer_id, invoice_date, amount);END;

Write a trigger to update the customer balance when an invoice is deleted. Name the trigger trg_updatecustbalance

2.CREATE OR REPLACE TRIGGER trg_updatecustbalance2 AFTER DELETE ON invoice FOR EACH ROWBEGINUPDATE customer SET cust_balance = cust_balance - :old.inv_amount WHERE cust_id = :old.cust_id;END;

Write a procedure to delete an invoice, giving the invoice number as a parameter. Name the procedure pre_inv_delete.

CREATE OR REPLACE PROCEDURE pre_inv_delete(invoice_id IN NUMBER)ASBEGINDELETE FROM invoice WHERE inv_id = invoice_id;END;Test the procedure by deleting invoices 8005 and 8006.Call pre_inv_delete(8005);Call pre_inv_delete(8006);

To know more about Oracle sequence refer here:

https://brainly.com/question/15186730

#SPJ11


Related Questions

Baseball regression line prediction:
Suppose the regression line for the number of runs scored in a season, y, is given by
ŷ = - 7006100x,
where x is the team's batting average.
a. For a team with a batting average of 0.235, find the expected number of runs scored in a season. Round your answer to the nearest whole number.
b. If we can expect the number of runs scored in a season is 380, then what is the assumed team's batting average? Round your answer to three decimal places.

Answers

For a given regression line, y = -7006100x, which predicts the number of runs scored in a baseball season based on a team's batting average x, we can determine the expected number of runs scored for a team with a batting average of 0.235 and the assumed batting average for a team that scores 380 runs in a season.

a. To find the expected number of runs scored in a season for a team with a batting average of 0.235, we simply plug in x = 0.235 into the regression equation:

ŷ = -7006100(0.235) = -97.03

Rounding this to the nearest whole number gives us an expected number of runs scored in a season of  -97.

Therefore, for a team with a batting average of 0.235, we can expect them to score around 97 runs in a season.

b. To determine the assumed team's batting average if we can expect the number of runs scored in a season to be 380, we need to solve the regression equation for x.

First, we substitute ŷ = 380 into the regression equation and solve for x:

380 = -7006100x

x = 380 / (-7006100)

x ≈ 0.054

Rounding this to three decimal places, we get the assumed team's batting average to be 0.054.

Therefore, if we can expect a team to score 380 runs in a season, their assumed batting average would be approximately 0.054.

learn more about regression line here

https://brainly.com/question/29753986

#SPJ11

Simplify each expression and state any restrictions on the variables. a) [a+3/a+2]-[(7/a-4)]
b) [4/x²+5x+6]+[3/x²+6x+9]

Answers

We can then simplify the expression as:`[4(x + 3) + 3(x + 2)] / (x + 2)(x + 3)²`Simplifying, we get:`[7x + 18] / (x + 2)(x + 3)²`The restrictions on the variable are `x ≠ -3` and `x ≠ -2`, since division by zero is not defined. Thus, the variable cannot take these values.

a) The given expression is: `[a+3/a+2]-[(7/a-4)]`To simplify this expression, let us first find the least common multiple (LCM) of the denominators `(a + 2)` and `(a - 4)`.The LCM of `(a + 2)` and `(a - 4)` is `(a + 2)(a - 4)`So, we multiply both numerator and denominator of the first fraction by `(a - 4)` and both numerator and denominator of the second fraction by `(a + 2)` to obtain the expression with the common denominator:

`[(a + 3)(a - 4) / (a + 2)(a - 4)] - [7(a + 2) / (a + 2)(a - 4)]`

Now, we can combine the fractions using the common denominator as:

`[a² - a - 29] / (a + 2)(a - 4)`

Thus, the simplified expression is

`[a² - a - 29] / (a + 2)(a - 4)`

The restrictions on the variable are `a

≠ -2` and `a

≠ 4`, since division by zero is not defined. Thus, the variable cannot take these values.b) The given expression is: `[4/x²+5x+6]+[3/x²+6x+9]`

To simplify this expression, let us first factor the denominators of both the fractions.

`x² + 5x + 6

= (x + 3)(x + 2)` and `x² + 6x + 9

= (x + 3)²`

Now, we can write the given expression as:

`[4/(x + 2)(x + 3)] + [3/(x + 3)²]`

Let us find the LCD of the two fractions, which is `(x + 2)(x + 3)²`.We can then simplify the expression as:

`[4(x + 3) + 3(x + 2)] / (x + 2)(x + 3)²`

Simplifying, we get:

`[7x + 18] / (x + 2)(x + 3)²`

The restrictions on the variable are `x

≠ -3` and `x

≠ -2`, since division by zero is not defined. Thus, the variable cannot take these values.

To know more about restrictions visit:

https://brainly.com/question/30195877

#SPJ11

Let A and B be two m×n matrices. Under each of the assumptions below, determine whether A=B must always hold or whether A=B holds only sometimes. (a) Suppose Ax=Bx holds for all n-vectors x. (b) Suppose Ax=Bx for some nonzero n-vector x.

Answers

A and B do not necessarily have to be equal.

(a) If Ax = Bx holds for all n-vectors x, then we can choose x to be the standard basis vectors e_1, e_2, ..., e_n. Then we have:

Ae_1 = Be_1

Ae_2 = Be_2

...

Ae_n = Be_n

This shows that A and B have the same columns. Therefore, if A and B have the same dimensions, then it must be the case that A = B. So, under this assumption, we have A = B always.

(b) If Ax = Bx holds for some nonzero n-vector x, then we can write:

(A - B)x = 0

This means that the matrix C = A - B has a nontrivial nullspace, since there exists a nonzero vector x such that Cx = 0. Therefore, the rank of C is less than n, which implies that A and B do not necessarily have the same columns. For example, we could have:

A = [1 0]

[0 0]

B = [0 0]

[0 1]

Then Ax = Bx holds for x = [0 1]^T, but A and B are not equal.

Therefore, under this assumption, A and B do not necessarily have to be equal.

learn more about vectors here

https://brainly.com/question/24256726

#SPJ11

Question 2 In a Markov chain model for the progression of a disease, X n

denotes the level of severity in year n, for n=0,1,2,3,…. The state space is {1,2,3,4} with the following interpretations: in state 1 the symptoms are under control, state 2 represents moderate symptoms, state 3 represents severe symptoms and state 4 represents a permanent disability. The transition matrix is: P= ⎝


4
1

0
0
0

2
1

4
1

0
0

0
2
1

2
1

0

4
1

4
1

2
1

1




(a) Classify the four states as transient or recurrent giving reasons. What does this tell you about the long-run fate of someone with this disease? (b) Calculate the 2-step transition matrix. (c) Determine (i) the probability that a patient whose symptoms are moderate will be permanently disabled two years later and (ii) the probability that a patient whose symptoms are under control will have severe symptoms one year later. (d) Calculate the probability that a patient whose symptoms are moderate will have severe symptoms four years later. A new treatment becomes available but only to permanently disabled patients, all of whom receive the treatment. This has a 75% success rate in which case a patient returns to the "symptoms under control" state and is subject to the same transition probabilities as before. A patient whose treatment is unsuccessful remains in state 4 receiving a further round of treatment the following year. (e) Write out the transition matrix for this new Markov chain and classify the states as transient or recurrent. (f) Calculate the stationary distribution of the new chain. (g) The annual cost of health care for each patient is 0 in state 1,$1000 in state 2, $2000 in state 3 and $8000 in state 4. Calculate the expected annual cost per patient when the system is in steady state.

Answers

A.  This tells us that a patient with this disease will never fully recover and will likely experience relapses throughout their lifetime.

(b) To calculate the 2-step transition matrix, we can simply multiply the original transition matrix by itself: P^2

F.  we get:

π = (0.2143, 0.1429, 0.2857, 0.3571)

G.  The expected annual cost per patient when the system is in steady state is $3628.57.

(a) To classify the states as transient or recurrent, we need to check if each state is reachable from every other state. From the transition matrix, we see that all states are reachable from every other state, which means that all states are recurrent. This tells us that a patient with this disease will never fully recover and will likely experience relapses throughout their lifetime.

(b) To calculate the 2-step transition matrix, we can simply multiply the original transition matrix by itself: P^2 = ⎝

4/16   6/16   4/16   2/16

1/16   5/16   6/16   4/16

0      1/8    5/8    3/8

0      0      0      1

(c)

(i) To find the probability that a patient whose symptoms are moderate will be permanently disabled two years later, we can look at the (2,4) entry of the 2-step transition matrix: 6/16 = 0.375

(ii) To find the probability that a patient whose symptoms are under control will have severe symptoms one year later, we can look at the (1,3) entry of the original transition matrix: 0

(d) To calculate the probability that a patient whose symptoms are moderate will have severe symptoms four years later, we can look at the (2,3) entry of the 4-step transition matrix: 0.376953125

(e) The new transition matrix would look like this:

0.75   0      0      0.25

0      0.75   0.25   0

0      0.75   0.25   0

0      0      0      1

To classify the states as transient or recurrent, we need to check if each state is reachable from every other state. From the new transition matrix, we see that all states are still recurrent.

(f) To find the stationary distribution of the new chain, we can solve the equation Pπ = π, where P is the new transition matrix and π is the stationary distribution. Solving this equation, we get:

π = (0.2143, 0.1429, 0.2857, 0.3571)

(g) The expected annual cost per patient when the system is in steady state can be calculated as the sum of the product of the steady-state probability vector and the corresponding cost vector for each state:

0.2143(0) + 0.1429(1000) + 0.2857(2000) + 0.3571(8000) = $3628.57

Therefore, the expected annual cost per patient when the system is in steady state is $3628.57.

Learn more about matrix from

https://brainly.com/question/27929071

#SPJ11

In 20 words or fewer describe the kind of relationship you see between the x-coordinates of the midpoint and the endpoint not at the

Answers

The midpoint is half the x-coordinate at the endpoint that is not at the origin

How to determine the relationship between the midpoints

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

Midpoint and Endpoint

The midpoint of two endpoints is calculated as

Midpoint = 1/2 * Sum of endpoints

in this situation one of the endpoints is at the origin, and the other is a given value (x, 0)

Then, the midpoint is:

((x + 0)/2, 0) = (x/2, 0)

Hence, the relationship is: x(midpoint) = x/2

Read more about midpoint at

https://brainly.com/question/30587266

#SPJ1

Problem 5. Imagine it is the summer of 2004 and you have just started your first (sort-of) real job as a (part-time) reservations sales agent for Best Western Hotels & Resorts 1
. Your base weekly salary is $450, and you receive a commission of 3% on total sales exceeding $6000 per week. Let x denote your total sales (in dollars) for a particular week. (a) Define the function P by P(x)=0.03x. What does P(x) represent in this context? (b) Define the function Q by Q(x)=x−6000. What does Q(x) represent in this context? (c) Express (P∘Q)(x) explicitly in terms of x. (d) Express (Q∘P)(x) explicitly in terms of x. (e) Assume that you had a good week, i.e., that your total sales for the week exceeded $6000. Define functions S 1

and S 2

by the formulas S 1

(x)=450+(P∘Q)(x) and S 2

(x)=450+(Q∘P)(x), respectively. Which of these two functions correctly computes your total earnings for the week in question? Explain your answer. (Hint: If you are stuck, pick a value for x; plug this value into both S 1

and S 2

, and see which of the resulting outputs is consistent with your understanding of how your weekly salary is computed. Then try to make sense of this for general values of x.)

Answers

(a) function P(x) represents the commission you earn based on your total sales x.

(b) The function Q(x) represents the amount by which your total sales x exceeds $6000.

(c) The composition (P∘Q)(x) represents the commission earned after the amount by which total sales exceed $6000 has been determined.

(d) The composition (Q∘P)(x) represents the amount by which the commission is subtracted from the total sales.

(e) S1(x) = 450 + 0.03(x − 6000) correctly computes your total earnings for the week by considering both the base salary and the commission earned on sales exceeding $6000.

(a) In this context, the function P(x) represents the commission you earn based on your total sales x. It is calculated as 3% of the total sales amount.

(b) The function Q(x) represents the amount by which your total sales x exceeds $6000. It calculates the difference between the total sales and the threshold of $6000.

(c) The composition (P∘Q)(x) represents the commission earned after the amount by which total sales exceed $6000 has been determined. It can be expressed as (P∘Q)(x) = P(Q(x)) = P(x − 6000) = 0.03(x − 6000).

(d) The composition (Q∘P)(x) represents the amount by which the commission is subtracted from the total sales. It can be expressed as (Q∘P)(x) = Q(P(x)) = Q(0.03x) = 0.03x − 6000.

(e) The function S1(x) = 450 + (P∘Q)(x) correctly computes your total earnings for the week. It takes into account the base salary of $450 and adds the commission earned after subtracting $6000 from the total sales. This is consistent with the understanding that your total earnings include both the base salary and the commission.

Function S2(x) = 450 + (Q∘P)(x) does not correctly compute your total earnings for the week. It adds the commission first and then subtracts $6000 from the total sales, which would result in an incorrect calculation of earnings.

To learn more about functions: https://brainly.com/question/11624077

#SPJ11

Convert the following into set builder notation. a1=1.a n =a n−1 +n; a1=4.an =4⋅an−1 ;

Answers

We are given two recursive sequences:

a1=1, an=an-1+n

a1=4, an=4⋅an-1

To express these sequences using set-builder notation, we can first generate terms of the sequence up to a certain value of n, and then write them in set notation. For example, if we want to write the first 5 terms of the first sequence, we have:

a1 = 1

a2 = a1 + 2 = 3

a3 = a2 + 3 = 6

a4 = a3 + 4 = 10

a5 = a4 + 5 = 15

In set-builder notation, we can express the sequence {a_n} as:

{a_n | a_1 = 1, a_n = a_{n-1} + n, n ≥ 2}

Similarly, for the second sequence, the first 5 terms are:

a1 = 4

a2 = 4a1 = 16

a3 = 4a2 = 64

a4 = 4a3 = 256

a5 = 4a4 = 1024

And the sequence can be expressed as:

{a_n | a_1 = 4, a_n = 4a_{n-1}, n ≥ 2}

learn more about recursive sequences here

https://brainly.com/question/28947869

#SPJ11

what is the angle θ between the positive y axis and the vector j⃗ as shown in the figure?

Answers

The angle that the vector A = 2i + 3j makes with the y-axis is approximately 56.31 degrees.

To determine this angle, we can use trigonometry. Since the magnitude of the vector A in the y direction is 3, and the magnitude of the vector A in the x direction is 2, we can construct a right triangle. The side opposite the angle we are interested in is 3 (the y-component), and the side adjacent to it is 2 (the x-component).

Using the trigonometric ratio for tangent (tan), we can calculate the angle theta:

tan(theta) = opposite/adjacent

tan(theta) = 3/2

Taking the inverse tangent (arctan) of both sides, we find:

theta = arctan(3/2)

Using a calculator, we can determine that the angle theta is approximately 56.31 degrees.

Therefore, the angle that the vector A = 2i + 3j makes with the y-axis is approximately 56.31 degrees.

To know more about vector here

https://brainly.com/question/29740341

#SPJ4

Complete Question:

The angle that the vector A = 2 i  +3 j ​ makes with y-axis is :

Please
show work step by step for these problems. Thanks in advance!
From a survey of 100 college students, a marketing research company found that 55 students owned iPods, 35 owned cars, and 15 owned both cars and iPods. (a) How many students owned either a car or an

Answers

75 students owned either a car or an iPod, and 25 students did not own either a car or an iPod.

To determine the number of students who owned either a car or an iPod, we need to use the principle of inclusion and exclusion.

The formula to find the total number of students who owned either a car or an iPod is as follows:

Total = number of students who own a car + number of students who own an iPod - number of students who own both

By substituting the values given in the problem, we get:

Total = 35 + 55 - 15 = 75

Therefore, 75 students owned either a car or an iPod.

To find the number of students who did not own either a car or an iPod, we can subtract the total number of students from the total number of students surveyed.

Number of students who did not own either a car or an iPod = 100 - 75 = 25

Therefore, 25 students did not own either a car or an iPod.

In conclusion, 75 students owned either a car or an iPod, and 25 students did not own either a car or an iPod, according to the given data.

Know more about principle of inclusion and exclusion here:

https://brainly.com/question/32375490

#SPJ11

an experiment consists of choosing a colored urn with equally likely probability and then drawing a ball from that urn. in the brown urn, there are 24 brown balls and 11 white balls. in the yellow urn, there are 18 yellow balls and 8 white balls. in the white urn, there are 18 white balls and 16 blue balls. what is the probability of choosing the yellow urn and a white ball? a) exam image b) exam image c) exam image d) exam image e) exam image f) none of the above.

Answers

The probability of choosing the yellow urn and a white ball is 3/13.

To find the probability of choosing the yellow urn and a white ball, we need to consider the probability of two events occurring:

Choosing the yellow urn: The probability of choosing the yellow urn is 1/3 since there are three urns (brown, yellow, and white) and each urn is equally likely to be chosen.

Drawing a white ball from the yellow urn: The probability of drawing a white ball from the yellow urn is 18/(18+8) = 18/26 = 9/13, as there are 18 yellow balls and 8 white balls in the yellow urn.

To find the overall probability, we multiply the probabilities of the two events:

P(Yellow urn and white ball) = (1/3) × (9/13) = 9/39 = 3/13.

Therefore, the probability of choosing the yellow urn and a white ball is 3/13.

To know more about probability click here :

https://brainly.com/question/19538755

#SPJ4

A force of 20 lb is required to hold a spring stretched 3 ft. beyond its natural length. How much work is done in stretching the spring from 3 ft. beyond its natural length to 7 ft. beyond its natural length? Work

Answers

The work done in stretching the spring from 3 ft. beyond its natural length to 7 ft. beyond its natural length is 400/3 or 133.33 foot-pounds (rounded to two decimal places).

The work done in stretching the spring from 3 ft. beyond its natural length to 7 ft.

beyond its natural length can be calculated as follows:

Given that the force required to hold a spring stretched 3 ft. beyond its natural length = 20 lb

The work done to stretch a spring from its natural length to a length of x is given by

W = (1/2)k(x² - l₀²)

where l₀ is the natural length of the spring, x is the length to which the spring is stretched, and k is the spring constant.

First, let's find the spring constant k using the given information.

The spring constant k can be calculated as follows:

F = kx

F= k(3)

k = 20/3

The spring constant k is 20/3 lb/ft

Now, let's calculate the work done in stretching the spring from 3 ft. beyond its natural length to 7 ft. beyond its natural length.The work done to stretch the spring from 3 ft. to 7 ft. is given by:

W = (1/2)(20/3)(7² - 3²)

W = (1/2)(20/3)(40)

W = (400/3)

Know more about the natural length

https://brainly.com/question/15089989

#SPJ11

water runs into a conical tank at the rate of 9ft(3)/(m)in. The tank stands point down and has a height of 10 feet and a base radius of 5ft. How fast is the water level rising when the water is bft de

Answers

The rate of change of the water level, dr/dt, is equal to (1/20)(b).

To determine how fast the water level is rising, we need to find the rate of change of the height of the water in the tank with respect to time.

Given:

Rate of water flow into the tank: 9 ft³/min

Height of the tank: 10 feet

Base radius of the tank: 5 feet

Rate of change of the depth of water: b ft/min (the rate we want to find)

Let's denote:

The height of the water in the tank as "h" (in feet)

The radius of the water surface as "r" (in feet)

We know that the volume of a cone is given by the formula: V = (1/3)πr²h

Differentiating both sides of this equation with respect to time (t), we get:

dV/dt = (1/3)π(2rh(dr/dt) + r²(dh/dt))

Since the tank is point down, the radius (r) and height (h) are related by similar triangles:

r/h = 5/10

Simplifying the equation, we have:

2r(dr/dt) = (r/h)(dh/dt)

Substituting the given values:

2(5)(dr/dt) = (5/10)(b)

Simplifying further:

10(dr/dt) = (1/2)(b)

dr/dt = (1/20)(b)

Therefore, the rate of change of the water level, dr/dt, is equal to (1/20)(b).

To learn more about rate of change

https://brainly.com/question/17214872

#SPJ11

a company that uses job order costing reports the following information for march. overhead is applied at the rate of 60% of direct materials cost. the company has no beginning work in process or finished goods inventories at march 1. jobs 1 and 3 are not finished by the end of march, and job 2 is finished but not sold by the end of march.

Answers

Based on the percentage completed and the cost of the jobs, total value of work in process inventory at the end of March is $62,480.

The work in process will include Jobs 1 and 3 only because job 2 is already done.

Work in process can be found as:

= Cost of job 1 + Cost of job 3

Cost of a single job is:

= Direct labor + Direct materials + Overhead which is 60% of direct materials

Solving for both jobs gives:

= (13,400 + 21,400 + (13,400 x 60%)) + (6,400 + 9,400 + (6,400 x 60%))

= $62,480

To learn more on Equation:

https://brainly.com/question/10413253

#SPJ4

a person with too much time on his hands collected 1000 pennies that came into his possession in 1999 and calculated the age (as of 1999) of each penny. the distribution of penny ages has mean 12.264 years and standard deviation 9.613 years. knowing these summary statistics but without seeing the distribution, can you comment on whether or not the normal distribution is likely to provide a reasonable model for the ages of these pennies? explain.

Answers

If the ages of the pennies are normally distributed, around 99.7% of the data points would be contained within this range.

In this case, one standard deviation from the mean would extend from

12.264 - 9.613 = 2.651 years

to

12.264 + 9.613 = 21.877 years. Thus, if the penny ages follow a normal distribution, roughly 68% of the ages would lie within this range.

Similarly, two standard deviations would span from

12.264 - 2(9.613) = -6.962 years

to

12.264 + 2(9.613) = 31.490 years.

Therefore, approximately 95% of the penny ages should fall within this interval if they conform to a normal distribution.

Finally, three standard deviations would encompass from

12.264 - 3(9.613) = -15.962 years

to

12.264 + 3(9.613) = 42.216 years.

Considering the above analysis, we can make an assessment. Since the collected penny ages are limited to the year 1999 and the observed standard deviation is relatively large at 9.613 years, it is less likely that the ages of the pennies conform to a normal distribution.

This is because the deviation from the mean required to encompass the majority of the data is too wide, and it would include negative values (which is not possible in this context).

To know more about standard deviation here

https://brainly.com/question/16555520

#SPJ4

Find the lines that are (a) tangent and (b) normal to the curve y=2x^(3) at the point (1,2).

Answers

The equations of the lines that are (a) tangent and (b) normal to the curve y = 2x³ at the point (1, 2) are:

y = 6x - 4 (tangent)y

= -1/6 x + 13/6 (normal)

Given, the curve y = 2x³.

Let's find the slope of the curve y = 2x³.

Using the Power Rule of differentiation,

dy/dx = 6x²

Now, let's find the slope of the tangent at point (1, 2) on the curve y = 2x³.

Substitute x = 1 in dy/dx

= 6x²

Therefore,

dy/dx at (1, 2) = 6(1)²

= 6

Hence, the slope of the tangent at (1, 2) is 6.The equation of the tangent line in point-slope form is y - y₁ = m(x - x₁).

Substituting the given values,

m = 6x₁

= 1y₁

= 2

Thus, the equation of the tangent line to the curve y = 2x³ at the point

(1, 2) is: y - 2 = 6(x - 1).

Simplifying, we get, y = 6x - 4.

To find the normal line, we need the slope.

As we know the tangent's slope is 6, the normal's slope is the negative reciprocal of 6.

Normal's slope = -1/6

Now we can use point-slope form to find the equation of the normal at

(1, 2).

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

Substituting the values of the point (1, 2) and

the slope -1/6,y - 2 = -1/6(x - 1)

Simplifying, we get,

y = -1/6 x + 13/6

Therefore, the equations of the lines that are (a) tangent and (b) normal to the curve y = 2x³ at the point (1, 2) are:

y = 6x - 4 (tangent)y

= -1/6 x + 13/6 (normal)

To know more about Power Rule, visit:

https://brainly.com/question/30226066

#SPJ11

A machine cell uses 196 pounds of a certain material each day. Material is transported in vats that hold 26 pounds each. Cycle time for the vats is about 2.50 hours. The manager has assigned an inefficiency factor of 25 to the cell. The plant operates on an eight-hour day. How many vats will be used? (Round up your answer to the next whole number.)

Answers

The number of vats to be used is 8

Given: Weight of material used per day = 196 pounds

Weight of each vat = 26 pounds

Cycle time for each vat = 2.5 hours

Inefficiency factor assigned by manager = 25%

Time available for each day = 8 hours

To calculate the number of vats to be used, we need to calculate the time required to transport the total material by the available vats.

So, the number of vats required = Total material weight / Weight of each vat

To calculate the total material weight transported in 8 hours, we need to calculate the time required to transport the weight of one vat.

Total time to transport one vat = Cycle time for each vat / Inefficiency factor

Time to transport one vat = 2.5 / 1.25

(25% inefficiency = 1 - 0.25 = 0.75 efficiency factor)

Time to transport one vat = 2 hours

Total number of vats required = Total material weight / Weight of each vat

Total number of vats required = 196 / 26 = 7.54 (approximately)

Therefore, the number of vats to be used is 8 (rounded up to the next whole number).

Answer: 8 vats will be used.

To know more about vats visit:

https://brainly.com/question/20628016

#SPJ11

What equations has the steepest graph?

Answers

An equation with the steepest graph has the largest absolute value of slope.

The equation with the steepest graph is the equation with the largest absolute value of slope.

A slope is a measure of how steep a line is.

If a line has a positive slope, it is rising to the right.

If a line has a negative slope, it is falling to the right.

If the slope of a line is zero, the line is horizontal.

To multiply the square root of 2 + i and its conjugate, you can use the complex multiplication formula.

(a + bi)(a - bi) = [tex]a^2 - abi + abi - b^2i^2[/tex]

where the number is √2 + i. Let's do a multiplication with this:

(√2 + i)(√2 - i)

Using the above formula we get:

[tex](\sqrt{2})^2 - (\sqrt{2})(i ) + (\sqrt{2} )(i) - (i)^2[/tex]

Further simplification:

2 - (√2)(i) + (√2)(i) - (- 1)

Combining similar terms:

2 + 1

results in 3. So (√2 + i)(√2 - i) is 3.

For more related questions on absolute value:

https://brainly.com/question/29764645

#SPJ8

When the regression line is written in standard form (using z scores), the slope is signified by: 5 If the intercept for the regression line is negative, it indicates what about the correlation? 6 True or false: z scores must first be transformed into raw scores before we can compute a correlation coefficient. 7 If we had nominal data and our null hypothesis was that the sampled data came

Answers

5. When the regression line is written in standard form (using z scores), the slope is signified by the correlation coefficient between the variables. The slope represents the change in the dependent variable (in standard deviation units) for a one-unit change in the independent variable.

6. If the intercept for the regression line is negative, it does not indicate anything specific about the correlation between the variables. The intercept represents the predicted value of the dependent variable when the independent variable is zero.

7. False. Z scores do not need to be transformed into raw scores before computing a correlation coefficient. The correlation coefficient can be calculated directly using the z scores of the variables.

To know more about zero visit:

brainly.com/question/29120033

#SPJ11

Find all horizontal and vertical asymptotes. f(x)= 5x^ 2−16x+3/x^ 2 −2x−3

Answers

The function [tex]f(x) = (5x^2 - 16x + 3) / (x^2 - 2x - 3)[/tex] has vertical asymptotes at x = 3 and x = -1. The horizontal asymptote of the function is y = 5.

To find the horizontal and vertical asymptotes of the function [tex]f(x) = (5x^2 - 16x + 3) / (x^2 - 2x - 3)[/tex], we examine the behavior of the function as x approaches positive or negative infinity.

Vertical Asymptotes:

Vertical asymptotes occur when the denominator of the function approaches zero, causing the function to approach infinity or negative infinity.

To find the vertical asymptotes, we set the denominator equal to zero and solve for x:

[tex]x^2 - 2x - 3 = 0[/tex]

Factoring the quadratic equation, we have:

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

Setting each factor equal to zero:

x - 3 = 0 --> x = 3

x + 1 = 0 --> x = -1

So, there are vertical asymptotes at x = 3 and x = -1.

Horizontal Asymptote:

To find the horizontal asymptote, we compare the degrees of the numerator and the denominator of the function.

The degree of the numerator is 2 (highest power of x) and the degree of the denominator is also 2.

When the degrees of the numerator and denominator are equal, we can determine the horizontal asymptote by looking at the ratio of the leading coefficients of the polynomial terms.

The leading coefficient of the numerator is 5, and the leading coefficient of the denominator is also 1.

Therefore, the horizontal asymptote is y = 5/1 = 5.

To summarize:

Vertical asymptotes: x = 3 and x = -1

Horizontal asymptote: y = 5

To know more about horizontal asymptote,

https://brainly.com/question/33399708

#SPJ11

Given the differential equation: dG/dx= -фG
Solve the differential equation to find an expression for G (x)

Answers

The solution to the given differential equation is G(x) = ±Ce^(-фx), where C = e^C is a constant.

To solve the differential equation dG/dx = -фG, we can separate variables by multiplying both sides by dx and dividing by G. This yields:

1/G dG = -ф dx

Integrating both sides, we obtain:

∫(1/G) dG = -ф ∫dx

The integral of 1/G with respect to G is ln|G|, and the integral of dx is x. Applying these integrals, we have:

ln|G| = -фx + C

where C is the constant of integration. By exponentiating both sides, we get:

|G| = e^(-фx+C)

Since the absolute value of G can be positive or negative, we can rewrite the equation as:

G(x) = ±e^C e^(-фx)

Here, ±e^C represents the arbitrary constant of integration. Therefore, the solution to the given differential equation is G(x) = ±Ce^(-фx), where C = e^C is a constant.

For more information on differential equation visit: brainly.com/question/32146993

#SPJ11

Find an equation for the line that is tangent to the curve y=x ^3 −x at the point (1,0). The equation of the tangent line is y= (Type an expression using x as the variable.)

Answers

Therefore, the equation of the line that is tangent to the curve [tex]y = x^3 - x[/tex] at the point (1, 0) is y = 2x - 2.

To find the equation of the line that is tangent to the curve [tex]y = x^3 - x[/tex] at the point (1, 0), we can use the point-slope form of a linear equation.

The slope of the tangent line at a given point on the curve is equal to the derivative of the function evaluated at that point. So, we need to find the derivative of [tex]y = x^3 - x.[/tex]

Taking the derivative of [tex]y = x^3 - x[/tex] with respect to x:

[tex]dy/dx = 3x^2 - 1[/tex]

Now, we can substitute x = 1 into the derivative to find the slope at the point (1, 0):

[tex]dy/dx = 3(1)^2 - 1[/tex]

= 3 - 1

= 2

So, the slope of the tangent line at the point (1, 0) is 2.

Using the point-slope form of the linear equation, we have:

y - y1 = m(x - x1)

where (x1, y1) is the given point and m is the slope.

Substituting the values x1 = 1, y1 = 0, and m = 2, we get:

y - 0 = 2(x - 1)

Simplifying:

y = 2x - 2

To know more about equation,

https://brainly.com/question/32774754

#SPJ11

Latifa opens a savings account with AED 450. Each month, she deposits AED 125 into her account and does not withdraw any money from it. Write an equation in slope -intercept form of the total amount y

Answers

Therefore, the equation in slope-intercept form for the total amount, y, as a function of the number of months, x, is y = 125x + 450.

To write the equation in slope-intercept form, we need to express the total amount, y, as a function of the number of months, x. Given that Latifa opens her savings account with AED 450 and deposits AED 125 each month, the equation can be written as:

y = 125x + 450

In this equation: The coefficient of x, 125, represents the slope of the line. It indicates that the total amount increases by AED 125 for each month. The constant term, 450, represents the y-intercept. It represents the initial amount of AED 450 in the savings account.

To know more about equation,

https://brainly.com/question/29027288

#SPJ11

i need help please
2. Majority Rules [15 points] Consider the ternary logical connective # where #PQR takes on the value that the majority of P, Q and R take on. That is #PQR is true if at least two of P,

Answers

#PQR = (P ∧ Q) ∨ (Q ∧ R) ∨ (R ∧ P) expresses the ternary logical connective #PQR using only P, Q, R, ∧, ¬, and parentheses.

To express the ternary logical connective #PQR using only the symbols P, Q, R, ∧ (conjunction), ¬ (negation), and parentheses, we can use the following expression:

#PQR = (P ∧ Q) ∨ (Q ∧ R) ∨ (R ∧ P)

This expression represents the logic of #PQR, where it evaluates to true if at least two of P, Q, or R are true, and false otherwise. It uses the conjunction operator (∧) to check the individual combinations and the disjunction operator (∨) to combine them together. The negation operator (¬) is not required in this expression.

The correct question should be :

Consider the ternary logical connective # where #PQR takes on the value that the majority of P,Q and R take on. That is #PQR is true if at least two of P,Q or R is true and is false otherwise. Express #PQR using only the symbols: P,Q,R,∧,¬, and parenthesis. You may not use ∨.

To learn more about ternary operators visit : https://brainly.com/question/23559673

#SPJ11

3 of 25 After running a coiled tubing unit for 81 minutes, Tom has 9,153 feet of coiled tubing in the well. After running the unit another 10 minutes, he has 10,283 feet of tubing in the well. His call sheet shows he needs a total of 15,728 feet of tubing in the well. How many more feet of coiled tubing does he need to run into the well? feet 4 of 25 Brendan is running coiled tubing in the wellbore at a rate of 99.4 feet a minute. At the end of 8 minutes he has 795.2 feet of coiled tubing inside the wellbore. After 2 more minutes he has run an additional 198.8 feet into the wellbore. How many feet of coiled tubing did Brendan run in the wellbore altogether? 5 of 25 Coiled tubing is being run into a 22,000 foot wellbore at 69.9 feet per minute. It will take a little more than 5 hours to reach the bottom of the well. After the first four hours, how deep, in feet, is the coiled tubing? feet

Answers

3) The extra number of feet of coiled tubing Tom needs to run into the well is: 5445 ft

4) The total length of coiled tubing Brendan ran in the wellbore is: 994 ft

5) The distance that the coiled tubing has reached after the first four hours is:  a depth of 16,776 feet in the well.

How to solve Algebra Word Problems?

3) Initial amount of coiled tubing he had after 81 minutes = 9,153 feet

Amount of tubing after another 10 minutes = 10,283 feet

The total tubing required = 15,728 feet.

The extra number of feet of coiled tubing Tom needs to run into the well is: Needed tubing length - Current tubing length

15,728 feet - 10,283 feet = 5,445 feet

4) Speed at which Brendan is running coiled tubing = 99.4 feet per minute.

Coiled tubing inside the wellbore after 8 minutes is: 795.2 feet

Coiled tubing inside the wellbore after 2 more minutes is: 198.8 feet

The total length of coiled tubing Brendan ran in the wellbore is:

Total length = Initial length + Additional length

Total length =  795.2 feet + 198.8 feet

Total Length = 994 feet

5) Rate at which coiled tubing is being run into a 22,000-foot wellbore = 69.9 feet per minute. After the first four hours, we need to determine how deep the coiled tubing has reached.

A time of 4 hours is same as 240 minutes

Thus, the distance covered in the first four hours is:

Distance = Rate * Time

Distance = 69.9 feet/minute * 240 minutes

Distance = 16,776 feet

Read more about Algebra Word Problems at: https://brainly.com/question/21405634

#SPJ4

Graph the quadratic function of y=-4x^2-4x-1y=−4x 2 −4x−1

Answers

The graph of the quadratic function y = -4x^2 - 4x - 1 is a downward-opening parabola. To graph the quadratic function, we can analyze its key features, such as the vertex, axis of symmetry, and the direction of the parabola.

Vertex: The vertex of a quadratic function in the form y = ax^2 + bx + c is given by the coordinates (-b/2a, f(-b/2a)). In this case, a = -4 and b = -4. So, the x-coordinate of the vertex is -(-4)/(2(-4)) = 1/2. Substituting this x-value into the equation, we can find the y-coordinate:

f(1/2) = -4(1/2)^2 - 4(1/2) - 1 = -4(1/4) - 2 - 1 = -1.

Therefore, the vertex is (1/2, -1).

Axis of symmetry: The axis of symmetry is a vertical line passing through the vertex. In this case, the axis of symmetry is x = 1/2.

Direction of the parabola: Since the coefficient of the x^2 term is -4 (negative), the parabola opens downward.

With this information, we can plot the graph of the quadratic function.

The graph of the quadratic function y = -4x^2 - 4x - 1 is a downward-opening parabola. The vertex is located at (1/2, -1), and the axis of symmetry is the vertical line x = 1/2.

To know more about parabola , visit;

https://brainly.com/question/11911877

#SPJ11

In Problems 9 and 10 determine whether the given first-order differential equation is linear in the indicated dependent variable by matching it with the first differential equation given in (7). 9. (y2−1)dx+xdy=0; in y; in x 10. udv+(v+uv−ueux)du=0; in v, in u

Answers

The equation in (7) that matches the first differential equation is equation 10: udv + (v + uv - ueux)du = 0; in v, in u.

To determine whether the given first-order differential equation is linear in the indicated dependent variable, we need to compare it with the general form of a linear differential equation.

The general form of a linear first-order differential equation in the dependent variable y is:

dy/dx + P(x)y = Q(x)

Let's analyze the given equations:

(y^2 - 1)dx + xdy = 0; in y; in x

Comparing this equation with the general form, we can see that it does not match. The presence of the term (y^2 - 1)dx makes it a nonlinear equation in the dependent variable y.

udv + (v + uv - ueux)du = 0; in v, in u

Comparing this equation with the general form, we can see that it matches. The equation can be rearranged as:

(v + uv - ueux)du + (-1)udv = 0

In this form, it is linear in the dependent variable v.

Therefore, the equation in (7) that matches the first differential equation is equation 10: udv + (v + uv - ueux)du = 0; in v, in u.

Learn more about differential equation here

https://brainly.com/question/32645495

#SPJ11

mr. greenthumb wishes to mark out a rectangular flower bed, using a wall of his house as one side of the rectangle. the other three sides are to be marked by wire netting, of which he has only 64 ft available. what are the length l and width w of the rectangle that would give him the largest possible planting area? how do you make sure that your answer gives the largest, not the smallest area?

Answers

Using the properties of derivatives, the length and width of the rectangle that would give Mr. Greenthumb the largest possible planting area is 32ft and 16ft respectively.

To maximise a function:

1) find the first derivative of the function

2)put the derivative equal to 0 and solve

3)To check that is the maximum value, calculate the double derivative.

4) if double derivative is negative, value calculated is maximum.

Let the length of rectangle be l.

Let the width of rectangle be w.

The wire available is 64ft. It is used to make three sides of the rectangle. therefore, l + 2w = 64

Thus, l = 64 - 2w

The area of rectangle is equal to A = lw = w * (64 -2w) = [tex]64w - 2w^2[/tex]

to maximise A, find the derivative of A with respect to w.

[tex]\frac{dA}{dw} = 64 - 4w[/tex]

Putting the derivative equal to 0,

64 - 4w = 0

64 = 4w

w = 16ft

l = 64 - 2w = 32ft

To check if these are the maximum dimensions:

[tex]\frac{d^2A}{dw^2} = -4 < 0[/tex],

hence the values of length and width gives the maximum area.

Learn more about derivatives here

https://brainly.com/question/25324584

#SPJ4

A person must pay $ 6 to play a certain game at the casino. Each player has a probability of 0.16 of winning $ 12 , for a net gain of $ 6 (the net gain is the amount won 12 m

Answers

Given that a person must pay $ 6 to play a certain game at the casino. Each player has a probability of 0.16 of winning $ 12 , for a net gain of $ 6 (the net gain is the amount won 12 minus the amount paid 6 which is equal to $ 6). Let us find out the expected value of the game. The game's anticipated or expected value is $6.96.

The expected value of the game is the sum of the product of each outcome with its respective probability.The amount paid = $6The probability of winning $12 = 0.16

The net gain from winning $12 (12 - 6) = $6 The expected value of the game can be calculated as shown below:Expected value = ($6 x 0.84) + ($12 x 0.16)= $5.04 + $1.92= $6.96 Thus, the expected value of the game is $6.96.

To learn more about "Probability" visit: https://brainly.com/question/13604758

#SPJ11

How do you write one third of a number?; What is the difference of 1 and 7?; What is the difference of 2 and 3?; What is the difference 3 and 5?

Answers

One third of a number: Multiply the number by 1/3 or divide the number by 3.

Difference between 1 and 7: 1 - 7 = -6.

Difference between 2 and 3: 2 - 3 = -1.

Difference between 3 and 5: 3 - 5 = -2.

To write one third of a number, you can multiply the number by 1/3 or divide the number by 3. For example, one third of 12 can be calculated as:

1/3 * 12 = 4

So, one third of 12 is 4.

The difference between 1 and 7 is calculated by subtracting 7 from 1:

1 - 7 = -6

Therefore, the difference between 1 and 7 is -6.

The difference between 2 and 3 is calculated by subtracting 3 from 2:

2 - 3 = -1

Therefore, the difference between 2 and 3 is -1.

The difference between 3 and 5 is calculated by subtracting 5 from 3:

3 - 5 = -2

Therefore, the difference between 3 and 5 is -2.

To know more about Multiply, refer here:

https://brainly.com/question/30875464

#SPJ4

CONSTRUCTION A rectangular deck i built around a quare pool. The pool ha ide length. The length of the deck i 5 unit longer than twice the ide length of the pool. The width of the deck i 3 unit longer than the ide length of the pool. What i the area of the deck in term of ? Write the expreion in tandard form

Answers

The area of the deck, in terms of the side length of the pool (s), is given by the expression 2s² + 11s + 15.

The length of the deck is 5 units longer than twice the side length of the pool.

So, the length of the deck can be expressed as (2s + 5).

The width of the deck is 3 units longer than the side length of the pool. Therefore, the width of the deck can be expressed as (s + 3).

The area of a rectangle is calculated by multiplying its length by its width. Thus, the area of the deck can be found by multiplying the length and width obtained from steps 1 and 2, respectively.

Area of the deck = Length × Width

= (2s + 5) × (s + 3)

= 2s² + 6s + 5s + 15

= 2s² + 11s + 15

Therefore, the area of the deck, in terms of the side length of the pool (s), is given by the expression 2s² + 11s + 15.

To learn more on Area click:

https://brainly.com/question/20693059

#SPJ4

Other Questions
a) We have a quadratic function in two variablesz=f(x,y)=2y^22y+2x^210x+16which has a critical point.First calculate the Hesse matrix of the function and determine the signs of the eigenvalues. You do not need to calculate the eigenvalues to determine the signs.Find the critical point and enter it below in the form [x,y]Critical point:Classification:(No answer given)b)We have a quadratic functionw=g(x,y,z)=z^28z+2y^2+6y+2x^2+18x+24which has a critical point.First calculate the Hesse matrix of the function and determine the signs of the eigenvalues. You do not need to calculate the eigenvalues to determine the signs.Find the critical point and enter it below in the form [x,y,z]Critical point:Classify the point. Write "top", "bottom" or "saal" as the answer.Classification:(No answer given) According to Erikson, a toddler who does not develop a sense of autonomy may develop feelings of a.mistrust b.shame and doubt c.inferiority d.guilt TRUE/FALSE. the greater the amount of methylene blue dye leached into the heavy metal solution from the lichen means that the metal has low electronegativity. Laura is willing to pay as much as $1,000 for a wedding dress but is happy to find one she likes that costs $300.Select the term below that corresponds to this situation.Consumer surplusProducer surplusCeteris paribusEquilibrium Another model for a growth function for a limited population is given by the Gompertz function, which is a solution of the differential equationdP/dt cln (K/P)Pwhere c is a constant and K is the carrying capacity.(a) Solve this differential equation for c = 0.2, K = 4000, and initial population Po= = 300.P(t) =(b) Compute the limiting value of the size of the population.limt[infinity] P(t) =(c) At what value of P does P grow fastest?P = For each of the following problems, identify the variable, state whether it is quantitative or qualitative, and identify the population. Problem 1 is done as an 1. A nationwide survey of students asks "How many times per week do you eat in a fast-food restaurant? Possible answers are 0,1-3,4 or more. Variable: the number of times in a week that a student eats in a fast food restaurant. Quantitative Population: nationwide group of students. There is a road consisting of N segments, numbered from 0 to N-1, represented by a string S. Segment S[K] of the road may contain a pothole, denoted by a single uppercase "x" character, or may be a good segment without any potholes, denoted by a single dot, ". ". For example, string '. X. X" means that there are two potholes in total in the road: one is located in segment S[1] and one in segment S[4). All other segments are good. The road fixing machine can patch over three consecutive segments at once with asphalt and repair all the potholes located within each of these segments. Good or already repaired segments remain good after patching them. Your task is to compute the minimum number of patches required to repair all the potholes in the road. Write a function: class Solution { public int solution(String S); } that, given a string S of length N, returns the minimum number of patches required to repair all the potholes. Examples: 1. Given S=". X. X", your function should return 2. The road fixing machine could patch, for example, segments 0-2 and 2-4. 2. Given S = "x. Xxxxx. X", your function should return 3The road fixing machine could patch, for example, segments 0-2, 3-5 and 6-8. 3. Given S = "xx. Xxx", your function should return 2. The road fixing machine could patch, for example, segments 0-2 and 3-5. 4. Given S = "xxxx", your function should return 2. The road fixing machine could patch, for example, segments 0-2 and 1-3. Write an efficient algorithm for the following assumptions: N is an integer within the range [3. 100,000); string S consists only of the characters". " and/or "X" What is the intersection of these two sets: A = {2,3,4,5) B = {4,5,6,7)? Make or Buy Terry Incorporated manufactures machine parts for aircraft engines. CEO Bucky Walters is considering an offer from a subcontractor to provide 2,700 units of product OP89 for $275,400. If Terry does not purchase these parts from the subcontractor, it must continue to produce them in-house with these costs: Required: 1. What is the relevant cost per unit to make the product internally? 2. What is the estimated increase or decrease in short-term operating profit of producing the product internally versus purchasing the product from a supplier? Complete this question by entering your answers in the tabs below. What is the relevant cost per unit to make the product internally? what is the output of the following code is z is -1? x = 0 y = 5 z = -1 while x if x == z: print('x == z') break x += 1 else: print('x == y') Use traces to sketch the surface. (If an answer does not exist, enter DNE. Select Update Graph to see your response plotted on the screen. Select the Submit button to grade your response.)9x2 y2 + 3z2 = 0(Write an equation for the cross section at z = 0 using x and y.) (Write an equation for the cross section at y = 9 using x and z.) (Write an equation for the cross section at y = 9 using x and z.) (Write an equation for the cross section at x = 0 using y and z.) For each of the following write whether they are organic or inorganic molecules: e. water. f. carbon dioxide (CO2) g. fats h. 'sugar i. salts j. protein I k. O2 gas I. DNA Find a quadratic equation whose sum and product of the roots are 7 and 5 respectively. Suppose a system model has the following class diagram. Assume the class diagram is correct and you are converting it into a database design. The underlined attributes are identifiers for respective class objects.27 The database design will have ......a.a product table with Component Number as a foreign keyb.a component table with Product Number as a candidate keyc.a component table with Product Number as a foreign keyd.a component table with Vendor Number as a foreign keye.a component table with only Component Number and Component Name as fields Marcus makes $30 an hour working on cars with his uncle. If y represents the money Marcus has earned for working x hours, write an equation that represents this situation. For a certain reaction, the rate constant triples when thetemperature is increased from T1 of 250 K to T2 of 370 K. Determinethe activation energy. (R=8.315J/mol K) What are irrational numbers between 1 and square root 2 Continue with the industry you selected in Unit II for this assignment. For this Unit VII Assignment, write a script for a radio/television show as if you were interviewing an expert concerning topics discussed in this unit.Include input from both the interviewer and interviewee standpoint. What questions would you ask as the interviewer? What answers would you give to those questions as the interviewee? When writing your questions and answers, keep in mind that you have already learned a lot about your industry through earlier assignments in this course. It is suggested that you review your responses to those assignments before beginning this one.In your interview script, address the following topics:the structure of the Federal Reserve,the functions of money,six qualities of ideal money,the tools of monetary policy used by the Federal Reserve to manipulate the money supply in the United States,the current status of monetary policy regarding a contractionary or expansionary stance in the United States, andthe potential impacts on your selected industry over the next 2 years of this monetary policy stance.Your script must be a minimum of four pages (1,000 words, double-spaced). Adhere to APA Style when creating citations and references for this assignment. APA formatting, however, is not necessary.*****Industry is (Public Safety)******** the fact that organisms are adapted to survive in particular environments helps to explain why hi i already have java code now i need test cases only. thanks.Case study was given below. From case study by using eclipse IDE1. Create and implement test cases to demonstrate that the software system have achieved the required functionalities.Case study: Individual income tax ratesThese income tax rates show the amount of tax payable in every dollar for each income tax bracket depending on your circumstances.Find out about the tax rates for individual taxpayers who are:ResidentsForeign residentsChildrenWorking holiday makersResidentsThese rates apply to individuals who are Australian residents for tax purposes.Resident tax rates 202223Resident tax rates 202223Taxable incomeTax on this income0 $18,200Nil$18,201 $45,00019 cents for each $1 over $18,200$45,001 $120,000$5,092 plus 32.5 cents for each $1 over $45,000$120,001 $180,000$29,467 plus 37 cents for each $1 over $120,000$180,001 and over$51,667 plus 45 cents for each $1 over $180,000The above rates do not include the Medicare levy of 2%.Resident tax rates 202122Resident tax rates 202122Taxable incomeTax on this income0 $18,200Nil$18,201 $45,00019 cents for each $1 over $18,200$45,001 $120,000$5,092 plus 32.5 cents for each $1 over $45,000$120,001 $180,000$29,467 plus 37 cents for each $1 over $120,000$180,001 and over$51,667 plus 45 cents for each $1 over $180,000The above rates do not include the Medicare levy of 2%.Foreign residentsThese rates apply to individuals who are foreign residents for tax purposes.Foreign resident tax rates 202223Foreign resident tax rates 202223Taxable incomeTax on this income0 $120,00032.5 cents for each $1$120,001 $180,000$39,000 plus 37 cents for each $1 over $120,000$180,001 and over$61,200 plus 45 cents for each $1 over $180,000Foreign resident tax rates 202122Foreign resident tax rates 202122Taxable incomeTax on this income0 $120,00032.5 cents for each $1$120,001 $180,000$39,000 plus 37 cents for each $1 over $120,000$180,001 and over$61,200 plus 45 cents for each $1 over $180,000