Melicsa walks 3 miles t the house of a fiend and refurns home on a bike. She average 4 milee per han farfen when cycling than when walking, and the total fine for both trips is two howrs. Find her wal

Answers

Answer 1

Melicsa's walking speed is 2 miles per hour.

Let's denote the speed at which Melicsa walks as "w" (in miles per hour) and the speed at which she cycles as "c" (in miles per hour).

We are given the following information:

- Melicsa walks 3 miles to her friend's house.

- Melicsa returns home on a bike.

- Melicsa averages 4 miles per hour faster when cycling compared to walking.

- The total time for both trips is two hours.

To find her walking speed, we can set up an equation based on the given information.

Time taken to walk = Distance / Walking speed = 3 / w hours

Time taken to cycle = Distance / Cycling speed = 3 / (w + 4) hours

The total time for both trips is two hours:

3 / w + 3 / (w + 4) = 2

To solve this equation, we can multiply both sides by w(w + 4) to eliminate the denominators:

3(w + 4) + 3w = 2w(w + 4)

Simplifying the equation:

3w + 12 + 3w = 2w² + 8w

6w + 12 = 2w² + 8w

Rearranging and setting the equation equal to zero:

2w² + 2w - 12 = 0

Dividing both sides by 2 to simplify:

w² + w - 6 = 0

Factoring the quadratic equation:

(w + 3)(w - 2) = 0

Setting each factor equal to zero:

w + 3 = 0  or  w - 2 = 0

Solving for w:

w = -3  or  w = 2

Since we are looking for a positive value for the walking speed, we can discard the negative solution.

Therefore, Melicsa moves along at a 2 mph walking pace.

Learn more about speed on:

https://brainly.com/question/13262646

#SPJ11


Related Questions

Find the mean, variance, and standard deviation of the following situation: The probabilicy of drawing a red marble from a bag is 0.4. You draw six red marbles with replacement. Give your answer as a

Answers

The mean (anticipated value) in this case is 2.4, the variance is roughly 2.8, and the standard deviation is roughly 1.67.

To find the mean, variance, and standard deviation in this situation, we can use the following formulas:

Mean (Expected Value):

The mean is calculated by multiplying each possible outcome by its corresponding probability and summing them up.

Variance:

The variance is calculated by finding the average of the squared differences between each outcome and the mean.

Standard Deviation:

The standard deviation is the square root of the variance and measures the dispersion or spread of the data.

In this case, the probability of drawing a red marble from the bag is 0.4, and you draw six red marbles with replacement.

Mean (Expected Value):

The mean can be calculated by multiplying the probability of drawing a red marble (0.4) by the number of marbles drawn (6):

Mean = 0.4 * 6 = 2.4

Variance:

To calculate the variance, we need to find the average of the squared differences between each outcome (number of red marbles drawn) and the mean (2.4).

Variance = [ (0 - 2.4)² + (1 - 2.4)² + (2 - 2.4)² + (3 - 2.4)² + (4 - 2.4)² + (5 - 2.4)² + (6 - 2.4)² ] / 7

Variance = [ (-2.4)² + (-1.4)² + (-0.4)² + (0.6)² + (1.6)² + (2.6)² + (3.6)² ] / 7

Variance ≈ 2.8

Standard Deviation:

The standard deviation is the square root of the variance:

Standard Deviation ≈ √2.8 ≈ 1.67

Therefore, in this situation, the mean (expected value) is 2.4, the variance is approximately 2.8, and the standard deviation is approximately 1.67.

Learn more about Mean on:

https://brainly.com/question/1136789

#SPJ11

Five years ago, Diane secured a bank loan of $340,000 to help finance the purchase of a loft in the San Francisco Bay area. The term of the mortgage was 30 has now dropped to 3.5% /year compounded monthly, Diane is thinking of refinancing her property. (Round your answers to the nearest cent.) (a) What is Diane's current monthly mortgage payment? $ (b) What is Diane's current outstanding principal? $ (c) If Diane decides to refinance her property by securing a 30-year home mortgage loan in the amount of the current outstanding principal at the $ (d) How much less will Diane's monthly mortgage payment be if she refinances?

Answers

Diane's current monthly mortgage payment is $1,525.61, and her current outstanding principal is $302,200.63. If Diane decides to refinance, she can secure a loan of $302,200.63, and her monthly mortgage payment will be approximately $1,272.02, which is $253.59 less than her current payment.

(a) Diane's current monthly mortgage payment can be calculated using the loan amount, interest rate, and loan term. Using the formula for calculating the monthly mortgage payment, we can determine that her current monthly payment is $1,525.61.

(b) To find Diane's current outstanding principal, we need to consider the number of payments made and the remaining term of the mortgage. Since Diane took the loan five years ago with a 30-year term, the remaining term is 25 years or 300 months. We can use the loan balance formula to calculate the outstanding principal, which is $302,200.63.

(c) If Diane decides to refinance her property by securing a 30-year home mortgage loan in the amount of the current outstanding principal, she would take out a loan of $302,200.63.

(d) To calculate how much less Diane's monthly mortgage payment will be if she refinances, we need to compare the current monthly payment with the new payment. Assuming Diane can secure a new loan with a lower interest rate, let's say 3% compounded monthly, the new monthly payment would be $1,272.02. Therefore, if Diane refinances, her monthly mortgage payment would be approximately $253.59 less than her current payment.

To learn more about Mortgage payments, visit:

https://brainly.com/question/30190518

#SPJ11

using the curve fitting technique, determine the cubic fit for the following data. use the matlab commands polyfit, polyval and plot (submit the plot with the data below and the fitting curve).

Answers

The MATLAB commands polyfit, polyval and plot data is used .

To determine the cubic fit for the given data using MATLAB commands, we can use the polyfit and polyval functions. Here's the code to accomplish that:

x = [10 20 30 40 50 60 70 80 90 100];

y = [10.5 20.8 30.4 40.6 60.7 70.8 80.9 90.5 100.9 110.9];

% Perform cubic curve fitting

coefficients = polyfit( x, y, 3 );

fitted_curve = polyval( coefficients, x );

% Plotting the data and the fitting curve

plot( x, y, 'o', x, fitted_curve, '-' )

title( 'Fitting Curve' )

xlabel( 'X-axis' )

ylabel( 'Y-axis' )

legend( 'Data', 'Fitted Curve' )

To know more about  MATLAB commands click here :

https://brainly.com/question/31964830

#SPJ4

The complete question is :

Using the curve fitting technique, determine the cubic fit for the following data. Use the MATLAB commands polyfit, polyval and plot (submit the plot with the data below and the fitting curve). Include plot title "Fitting Curve," and axis labels: "X-axis" and "Y-axis."

x = 10 20 30 40 50 60 70 80 90 100

y = 10.5 20.8 30.4 40.6  60.7 70.8 80.9 90.5 100.9 110.9

We consider the vector space \( R^{\wedge} 3 \). Use Matlab to find the dimension of the vector space spanned by the vectors \( v 1=[1 ; 2 ;-1] \) and \( v 2=[2,-3,1] \) Explain the command you use

Answers

In MATLAB, we can find the dimension of a vector space spanned by given vectors using the rank of the matrix formed by those vectors.

In this case, we have vectors v1 = [1; 2; -1] and v2 = [2; -3; 1]. We can create a matrix A with these vectors as its columns using A = [v1, v2]. The command rank(A) will give us the rank of matrix A, which is equivalent to the dimension of the vector space spanned by the given vectors.

To find the dimension of the vector space spanned by v1 and v2 in \( \mathbb{R}^3 \), we use MATLAB's rank command on the matrix formed by these vectors.

By constructing a matrix A using the given vectors as its columns, A = [v1, v2], we create a 3x2 matrix. The rank of this matrix, obtained using the rank(A) command, gives us the number of linearly independent columns in A, which is equivalent to the dimension of the vector space spanned by v1 and v2.

For more information on vector visit: brainly.com/question/32325087

#SPJ11

Consider the given vector equation. r(t)=⟨4t−4,t ^2 +4⟩ (a) Find r ′(t).

Answers

Taking the limit of r'(t) as Δt → 0, we get:  r'(t) = <4, 2t>  The vector equation r(t) = <4t - 4, t² + 4> is given.

We need to find r'(t).

Given the vector equation, r(t) = <4t - 4, t² + 4>

Let r(t) = r'(t) = We need to differentiate each component of the vector equation separately.

r'(t) = Differentiating the first component,

f(t) = 4t - 4, we get f'(t) = 4

Differentiating the second component, g(t) = t² + 4,

we get g'(t) = 2t

So, r'(t) =  = <4, 2t>

Hence, the required vector is r'(t) = <4, 2t>

We have the vector equation r(t) = <4t - 4, t² + 4> and we know that r'(t) = <4, 2t>.

Now, let's find r'(t) using the definition of the derivative: r'(t) = [r(t + Δt) - r(t)]/Δtr'(t)

= [<4(t + Δt) - 4, (t + Δt)² + 4> - <4t - 4, t² + 4>]/Δtr'(t)

= [<4t + 4Δt - 4, t² + 2tΔt + Δt² + 4> - <4t - 4, t² + 4>]/Δtr'(t)

= [<4t + 4Δt - 4 - 4t + 4, t² + 2tΔt + Δt² + 4 - t² - 4>]/Δtr'(t)

= [<4Δt, 2tΔt + Δt²>]/Δt

Taking the limit of r'(t) as Δt → 0, we get:

r'(t) = <4, 2t> So, the answer is correct.

To know more about vector visit :

https://brainly.com/question/24256726

#SPJ11

Let X, Y be a bivariate random variable with joint probability density function given by
fx,y(x,y) = Axy exp(-x2), x>y>0 otherwise,
where A > 0 is a constant.
(i) Show that A = 4.
(ii) Find the marginal probability density function of X.
(iii) Find the marginal probability density function of Y.
(iv) Find P(X2Y | X < 2).

Answers

To find the constant A, we need to integrate the joint probability density function over its entire domain and set it equal to 1 since it represents a valid probability density function.

Marginal probability density function of X:

To find the marginal probability density function of X, we integrate the joint probability density function with respect to Y over its entire range:

= A exp(-x^2) ∫xy dy | from 0 to x

= A exp(-x^2) (1/2)x^2

= 2x^2 exp(-x^2), 0 < x < ∞  Marginal probability density function of Y:

To find the marginal probability density function of Y, we integrate the joint probability density function with respect to X over its entire range:

Since x>y>0, the integral limits for x are from y to ∞. Thus:

To find this probability, we need to calculate the conditional probability density function of Y given X < 2 and evaluate it for X^2Y.

Learn more about probability here

https://brainly.com/question/31828911

#SPJ11

Find the volume of the parallelepiped determines by the vectors
a, b and c.
a = <1, 3, 4>, b = < -1, 1, 4>, c= <4, 1,
2>
Volume (in cubic units) =

Answers

The volume of the parallelepiped determined by the vectors `a = <1, 3, 4>, b = < -1, 1, 4>, c= <4, 1, 2>` is `53 cubic units`.

The volume of the parallelepiped determines by the vectors `a`, `b`, and `c` is the absolute value of the scalar triple product `(a × b) · c`.

Given that `a = <1, 3, 4>, b = < -1, 1, 4>, c= <4, 1, 2>`,

the volume of the parallelepiped is given as follows:

`|a . (b x c)|

`Now, let's compute the cross product of `b` and `c` as follows:`

b x c = (1 × 2 - 1 × 1)i - (4 × 4 - (-1) × 2)j + (1 × 4 - 4 × 1)k

= i - 18j + 0k = <1, -18, 0>`

Then, the scalar triple product of `a`, `b x c` and `c` is given by:`

a . (b x c) = (1 × 1 + 3 × (-18) + 4 × 0)

= -53`

Finally, we compute the absolute value of the scalar triple product:

`|a . (b x c)| = |-53| = 53`

Thus, the volume of the parallelepiped determined by the vectors `a = <1, 3, 4>, b = < -1, 1, 4>, c= <4, 1, 2>` is `53 cubic units`.

To know more about parallelepiped visit:

https://brainly.com/question/30627222

#SPJ11

The function s(t) describes the position of a particle moving along a coordinate line, where s is in feet and t is in seconds. s(t)=t^ 3 −18t ^2+81t+4,t≥0 (a) Find the velocity and acceleration functions. v(t) a(t):

Answers

To find the acceleration function, we differentiate the velocity function v(t) as follows; a(t) = v'(t) = 6t - 36. Therefore, the acceleration function of the particle is a(t) = 6t - 36.

To find the velocity and acceleration functions, we need to differentiate the position function, s(t), with respect to time, t.

Given: s(t) = t^3 - 18t^2 + 81t + 4

(a) Velocity function, v(t):

To find the velocity function, we differentiate s(t) with respect to t.

v(t) = d/dt(s(t))

Taking the derivative of s(t) with respect to t:

v(t) = 3t^2 - 36t + 81

(b) Acceleration function, a(t):

To find the acceleration function, we differentiate the velocity function, v(t), with respect to t.

a(t) = d/dt(v(t))

Taking the derivative of v(t) with respect to t:

a(t) = 6t - 36

So, the velocity function is v(t) = 3t^2 - 36t + 81, and the acceleration function is a(t) = 6t - 36.

The velocity function is v(t) = 3t²-36t+81 and the acceleration function is a(t) = 6t-36. To find the velocity function, we differentiate the function for the position s(t) to get v(t) such that;v(t) = s'(t) = 3t²-36t+81The acceleration function can also be found by differentiating the velocity function v(t). Therefore; a(t) = v'(t) = 6t-36. The given function s(t) = t³ - 18t² + 81t + 4 describes the position of a particle moving along a coordinate line, where s is in feet and t is in seconds.

We are required to find the velocity and acceleration functions given that t≥0.To find the velocity function v(t), we differentiate the function for the position s(t) to get v(t) such that;v(t) = s'(t) = 3t² - 36t + 81. Thus, the velocity function of the particle is v(t) = 3t² - 36t + 81.To find the acceleration function, we differentiate the velocity function v(t) as follows;a(t) = v'(t) = 6t - 36Therefore, the acceleration function of the particle is a(t) = 6t - 36.

To know more about function, visit:

https://brainly.com/question/11624077

#SPJ11

Richard is playing a game with his teammates they will roll a dice to determine if he will have to run a lap. The odds in favor of him having to run a lap or 13 to 6. Find the probability of him having to run a lap.

Answers

The probability of Richard having to run a lap is 13/19 or approximately 0.6842 (rounded to four decimal places).

The odds in favor of Richard having to run a lap are given as 13 to 6. To find the probability of him having to run a lap, we need to convert these odds to a probability ratio.

The probability ratio is calculated by dividing the favorable outcomes by the total number of possible outcomes. In this case, the favorable outcomes are 13 and the total possible outcomes are 13 + 6 = 19 (since the odds are given as 13 to 6).

The odds are a way of expressing the likelihood of an event occurring compared to the likelihood of it not occurring. In this case, the odds are 13 to 6, which means that out of a total of 19 possible outcomes (13 + 6), there are 13 favorable outcomes where Richard has to run a lap and 6 unfavorable outcomes where he doesn't have to run a lap.

To convert these odds to a probability, we divide the number of favorable outcomes by the total number of possible outcomes. So, the probability of Richard having to run a lap is 13/19.

In decimal form, this probability is approximately 0.6842 (rounded to four decimal places). Therefore, there is a probability of approximately 0.6842 or 68.42% that Richard will have to run a lap based on the given odds.

Learn more about probability here:-

https://brainly.com/question/29006544

#SPJ11

Find the coordinates of the vertices of the polygon after the indicated translation to a new position in the plane. Original coordinates of vertices: (5,3),(4,1),(7,1) Shift: 4 units down, 9 units to the left

Answers

When a point (x,y) moves down by ‘k’ units, the new coordinates of the point (x,y) will be (x, y-k). Similarly, when a point (x,y) moves left by ‘k’ units, the new coordinates of the point (x,y) will be (x-k, y). By applying these formulas, we can calculate the new position of the polygon after a shift or movement.

Given, the original coordinates of vertices: (5,3),(4,1),(7,1)Shift: 4 units down, 9 units to the left. To find the new position of the polygon, we have to apply the shift (movement) to each of the vertices.

Let's see how we can calculate it.4 units down shift: When a point (x,y) moves down by ‘k’ units, the new coordinates of the point (x,y) will be (x, y-k)9 units left shift: When a point (x,y) moves left by ‘k’ units, the new coordinates of the point (x,y) will be (x-k, y)

Let's use these formulas to calculate the new coordinates of the given vertices: Vertex 1: (5,3)Shift: 4 units down, 9 units to the left, New position: (5-9, 3-4)= (-4, -1). Therefore, the new coordinates of vertex 1 are (-4, -1).Vertex 2: (4,1)

Shift: 4 units down, 9 units to the left new position: (4-9, 1-4)= (-5, -3). Therefore, the new coordinates of vertex 2 are (-5, -3).Vertex 3: (7,1)Shift: 4 units down, 9 units to the left. New position: (7-9, 1-4)= (-2, -3)

Therefore, the new coordinates of vertex 3 are (-2, -3). Thus, the coordinates of the vertices of the polygon after the indicated translation to a new position in the plane are (-4, -1), (-5, -3), and (-2, -3).

For more questions on coordinates

https://brainly.com/question/29660530

#SPJ8

Prove that the sum of any six consecutive1 integers is divisible
by 3

Answers

To prove that the sum of any six consecutive integers is divisible by 3, we can use mathematical induction.

Step 1: Base case

Let's start with the smallest possible set of consecutive integers: {1, 2, 3, 4, 5, 6}.

The sum of these numbers is 1 + 2 + 3 + 4 + 5 + 6 = 21, which is divisible by 3 (21 ÷ 3 = 7). Thus, the statement holds true for the base case.

Step 2: Inductive step

Now, let's assume that the sum of any six consecutive integers starting from a particular integer is divisible by 3. We will prove that the statement holds true for the next set of six consecutive integers.

Consider the set {n, n+1, n+2, n+3, n+4, n+5} as our consecutive integers, where n is an arbitrary integer.

The sum of these numbers is:

(n) + (n + 1) + (n + 2) + (n + 3) + (n + 4) + (n + 5) = 6n + 15.

Now, let's express 6n + 15 in terms of 3k, where k is an integer.

6n + 15 = 3(2n + 5).

We can see that 6n + 15 is divisible by 3, as it is a multiple of 3. Therefore, the statement holds true for the inductive step.

Step 3: Conclusion

By completing the base case and proving the inductive step, we have established that the sum of any six consecutive integers is divisible by 3. Hence, the statement is proven by mathematical induction.

Learn more about Integers here :

https://brainly.com/question/32250501

#SPJ11

What are the rigid transformations that will map â–³ ABC to â–³ def?.

Answers

Performing a rigid transformation involves translating vertex A to vertex D and then rotating triangle ABC around point A in order to align the sides and angles.

A rigid transformation is a type of transformation that maintains the Euclidean distance between every pair of points. This preservation of distance can be achieved through various means, including rotation, reflection, translation, and so on.

In this specific case, when vertex A is translated to vertex D, option D ensures that the distance between the points is preserved. This is because both vertices contain the same angle, and the other sides and angles are adjusted to align accordingly.

To know more about transformations here

https://brainly.com/question/11709244

#SPJ4

solve the differential equation
y ^ (5) - 2y ^ (4) + 4 * ((y' + 1) ^ 2)/(y ^ (2)) - y = 2e ^ t + t
y_{1}(t) = e ^ t - t & y_{2}(t) = e ^ (- t) + 2t

Answers

Substituting the particular solution yp(t), y1(t), and y2(t) into the general solution, we get:

y(t) = C1 * (e^t - t) + C2 * (e^(-t) + 2t) + (1/2) * e^t ± (√(1/2)/2) * t

where C1 and C2 are arbitrary constants.

To solve the given differential equation, we will use the method of variation of parameters.

The characteristic equation associated with the homogeneous part of the differential equation is:

r^5 - 2r^4 + 4(r + 1)^2/r^2 - r = 0

This equation does not have simple roots, so finding the general solution of the homogeneous part is difficult.

However, since the particular solutions y1(t) = e^t - t and y2(t) = e^(-t) + 2t are given, we can use them to find the general solution.

The general solution of the differential equation is given by:

y(t) = C1 * y1(t) + C2 * y2(t) + yp(t)

Where C1 and C2 are constants to be determined, and yp(t) is the particular solution.

To find the particular solution yp(t), we substitute it into the differential equation and solve for the constants. Let's assume the particular solution has the form:

yp(t) = A * e^t + B * t

Taking the derivatives of yp(t):

yp'(t) = A * e^t + B

yp''(t) = A * e^t

yp'''(t) = A * e^t

yp''''(t) = A * e^t

Substituting these derivatives and yp(t) into the differential equation, we have:

(A * e^t) - 2(A * e^t) + 4((A * e^t + B + 1)^2)/(A * e^t + B)^2 - (A * e^t + B) = 2e^t + t

Simplifying the equation, we get:

4B^2/(A * e^t + B)^2 - B + 2A * e^t - 3A * e^t = 2e^t + t

Equating the coefficients of like terms, we have:

4B^2 = 2   --->   B = ±√(1/2)

- B + 2A = 0   --->   A = B/2 = ±√(1/8) = ±√(2/8) = ±√(1/4) = ±1/2

Therefore, the particular solution yp(t) is:

yp(t) = (1/2) * e^t ± (√(1/2)/2) * t

Learn more about arbitrary constants here :-

https://brainly.com/question/32592097

#SPJ11

An object in a tube 0.3 meters in length undergoes an electromotive force given by F=5cos( 2π/5) Newtons, where x is the distance of the object from one end of the tube. How much work is required to move the object through the tube? N- m (round your answer to three decimal places)

Answers

The work required to move the object through the tube is about 2.5 N-m, rounded to three decimal places. The equation for the amount of work done on an object is W = F × d × cosθ, where F is the force exerted on the object,

The work required to move the object through the tube is about 2.5 N-m, rounded to three decimal places. The equation for the amount of work done on an object is W = F × d × cosθ, where F is the force exerted on the object, d is the distance the object is moved, and θ is the angle between the direction of the force and the direction of movement. The force is given by F = 5cos(2πx/5) in this case. Given: F = 5cos(2πx/5)N, x = 0.3m. Required: Work done (W)Formula: The formula for work done is given by W = F × d × cosθWhere, F is the force exerted on the object, d is the distance the object is moved, and θ is the angle between the direction of the force and the direction of movement.

 

Now, The work done (W) can be calculated as: W = ∫Fdx F = 5 cos(2πx/5) dx limits = from 0 to 0.3=5/[(2π/5)] sin(2πx/5)] limits = from 0 to 0.3W=5/[(2π/5)] [sin(2π(0.3)/5) - sin(2π(0)/5)]=2.5 N-m (rounded to three decimal places). The formula for work done is given by W = F × d × cosθ. This formula gives the amount of work done on an object when it is moved through a certain distance against a force. In this case, the force is given by F = 5cos(2πx/5) N, and the distance moved is 0.3 meters. To calculate the work done, we need to integrate the force over the distance. So the work done is given by W = ∫FdxF = 5 cos(2πx/5) dx, integrated from 0 to 0.3.The integral of the force is given by 5/[(2π/5)] sin(2πx/5)]. When we substitute the limits of integration, we get W=5/[(2π/5)] [sin(2π(0.3)/5) - sin(2π(0)/5)]. This simplifies to W=2.5 N-m when rounded to three decimal places. Therefore, the work required to move the object through the tube is about 2.5 N-m.

To know more about Force, visit:

https://brainly.com/question/12785175

#SPJ11

A 55.0g hard -boiled egg moves on the end of a spring with force constant k=25.0(N)/(m). Its initial displacement is 0.400m. A damping force F_(x)=-bv_(x) acts on the egg, and the amplitude of the motion decreases to 0.100m in a time of 5.00s.

Answers

The damping constant b for the motion of the hard-boiled egg is approximately 0.3 Ns/m.

We can use the formula for the damped harmonic motion of a spring-mass system:

m(d^2x/dt^2) + b(dx/dt) + kx = 0

Where:

m = mass of the egg (55.0 g = 0.055 kg)

b = damping constant (to be determined)

k = force constant of the spring (25.0 N/m)

x = displacement of the egg from its equilibrium position

Given initial displacement (amplitude) x₀ = 0.400 m and final displacement x = 0.100 m, we can calculate the damping constant b.

Using the equation for the displacement of a damped harmonic oscillator:

x = x₀ * e^(-bt/2m)

Plugging in the given values:

0.100 = 0.400 * e^(-b * 5.00 / (2 * 0.055))

Rearranging the equation and taking the natural logarithm (ln) of both sides:

ln(0.100/0.400) = (-b * 5.00) / (2 * 0.055)

Solving for b:

b ≈ (-2 * 0.055 * ln(0.100/0.400)) / 5.00 ≈ 0.3 Ns/m

The damping constant for the motion of the hard-boiled egg on the spring is approximately 0.3 Ns/m. This value determines the strength of the damping force acting on the egg and affects the rate at which the amplitude of the motion decreases over time.

To know more about  damping constant follow the link:

https://brainly.com/question/1968517

#SPJ11

for the cash Juows shewn in the diagram, determine the future worth in year if at an interest rate of yas per year.

Answers

The future worth in the year at an interest rate of y% per year is 931.77$.

The future worth (FW) can be calculated as follows;

FW = PW (F/P,i%,n) + A(F/A,i%,n)

Here,PW = present worth (the leftmost value in the first year of the cash flow diagram)

i = interest rate (y%)

n = number of years

A = Annual value (the uniform payment that occurs for each year) (the uniform value between the first year and n-1 year)

F = Future worth (the amount in the final year of the cash flow diagram)

First, we calculate the present worth. It is given as follows;PW = $1,500

The uniform payment is the same for each year between the first year and (n-1)th year.So, the annual value can be calculated as follows;

A = -$200 (as the value is outgoing)

Using the above values, the future worth can be calculated as follows;

FW = PW (F/P,i%,n) + A(F/A,i%,n)

FW = 1500(F/P, y%, n) + (-200)(F/A, y%, n)

The values of (F/P, y%, n) and (F/A, y%, n) can be calculated using annuity tables or online calculators.

Annuity tables and calculators give us the values of (F/P, y%, n) and (F/A, y%, n). For instance, using the calculator, we get; (F/P, y%, n) = 1.6385 and (F/A, y%, n) = 5.7606

By substituting the above values in the equation of future worth, we get;

FW = 1500(1.6385) + (-200)(5.7606)FW = 931.77$ (approx)

Therefore, the future worth in the year at an interest rate of y% per year is 931.77$.

Know more about  interest rate here,

https://brainly.com/question/14556630

#SPJ11

a group of children held a grape-eating contest. when the contest was over, the winner had eaten grapes, and the child in -th place had eaten grapes. the total number of grapes eaten in the contest was . find the smallest possible value of .

Answers

The smallest possible value of the total number of grapes eaten in the contest is the product of (n-1) and the number of grapes eaten by the child in last place, plus the number of grapes eaten by the winner.

We have,

A group of children held a grape-eating contest.

And, when the contest was over, the winner had eaten grapes, and the child in -th place had eaten grapes.

Hence, The smallest possible value of the total number of grapes eaten in the contest is,

(n - 1) (grapes eaten by the child in last place) + (grapes eaten by the winner).

So for example, if the winner had eaten 10 grapes and the child in last place had eaten 5 grapes, the total number of grapes eaten in the contest would be;

(n-1)5 + 10 = 45.

Hence, The smallest possible value of the total number of grapes eaten in the contest is the product of (n-1) and the number of grapes eaten by the child in last place, plus the number of grapes eaten by the winner.

To learn more about numbers here

brainly.com/question/10547079

#SPJ4

What Is The Slope Of The Tangent Line To The Graph Of F(X)=X4−11 At The Point (1,−10) ? A. 0 B. −1 C. -4 D. 1 E. 4

Answers

The correct option is E. The slope of the tangent line to the graph of f(x) at the point (1, -10) is 4.

The given function is f(x) = x⁴ - 11.

The slope of the tangent line to the graph of f(x) at the point (1, -10) can be determined by finding the derivative of f(x) and then evaluating it at x = 1.

Let's use the power rule to differentiate f(x) as follows:

f(x) = x⁴ - 11

f'(x) = 4x³

The slope of the tangent line to the graph of f(x) at x = 1 is therefore:

f'(1) = 4(1)³

= 4

The slope of the tangent line to the graph of f(x) at the point (1, -10) is 4. Therefore, the answer is E. 4.

To know more about tangent visit:

https://brainly.com/question/10053881

#SPJ11

What alternative term can be used to describe asymmetric cryptographic algorithms?

a. user key cryptography

b. public key cryptography

c. private key cryptography

d. cipher-text cryptography

Answers

The alternative term that can be used to describe asymmetric cryptographic algorithms is "public key cryptography," option b.

Asymmetric cryptography is a cryptographic approach that utilizes a pair of distinct keys, namely a public key and a private key.

The public key is openly shared, allowing anyone to encrypt messages intended for the owner of the corresponding private key.

Conversely, the private key remains secret and is used for decrypting the encrypted messages.

Public key cryptography is named as such because the public key can be freely distributed among users, enabling secure communication without the need for a shared secret key.

So the correct option is B.

Learn more about Cryptography here:

https://brainly.com/question/88001

#SPJ11

Consider the problem of finding the shortest route through several cities, such that each city is visited only once and in the end return to the starting city (the Travelling Salesman problem). Suppose that in order to solve this problem we use a genetic algorithm, in which genes represent links between pairs of cities. For example, a link between London and Paris is represented by a single gene 'LP'. Let also assume that the direction in which we travel is not important, so that LP=PL. a. Suggest what chromosome could represent an individual in this algorithm if the number of cities is 10 ?

Answers

In a genetic algorithm for the Traveling Salesman Problem (TSP), a chromosome represents a potential solution or a route through the cities. The chromosome typically consists of a sequence of genes, where each gene represents a city.

In this case, if we have 10 cities, the chromosome could be represented as a string of 10 genes, where each gene represents a city. For example, if the cities are labeled A, B, C, ..., J, a chromosome could look like:

Chromosome: ABCDEFGHIJ

This chromosome represents a potential route where the salesperson starts at city A, visits cities B, C, D, and so on, in the given order, and finally returns to city A.

It's important to note that the specific representation of the chromosome may vary depending on the implementation details of the genetic algorithm and the specific requirements of the problem. Different representations and encoding schemes can be used, such as permutations or binary representations, but a simple string-based representation as shown above is commonly used for small-scale TSP instances.

Learn more about  solution from

https://brainly.com/question/27894163

#SPJ11

Use z scores to compare the given values: Based on sample data, newborn males have weights with a mean of 3269.7 g and a standard deviation of 913.5 g. Newborn females have weights with a mean of 3046.2 g and a standard deviation of 577.1 g. Who has the weight that is more extreme relative to the group from which they came: a male who weighs 1600 g or a female who weighs 1600 g? Since the z score for the male is z= and the z score for the female is z= the has the weight that is more extreme. (Round to two decimal places.)

Answers

The formula to find z-score is given byz = (x - μ) / σwhere,x = observed value of the variable,μ = mean of the population,σ = standard deviation of the population The male newborn has a weight of 1600g, and the mean weight of newborn males is 3269.7g.

The standard deviation of weights of newborn males is 913.5 g. Using the above formula, we can find the z-score of the male as shown below

z = (x - μ) / σ= (1600 - 3269.7) / 913.5= -1.831

The female newborn has a weight of 1600g, and the mean weight of newborn females is 3046.2g. The standard deviation of weights of newborn females is 577.1g. Using the above formula, we can find the z-score of the female as shown below

z = (x - μ) / σ= (1600 - 3046.2) / 577.1= -2.499

The more negative the z-score, the more extreme the value is. Therefore, the female newborn with a z-score of -2.499 has the weight that is more extreme relative to the group from which they came. Based on sample data, newborn males have weights with a mean of 3269.7 g and a standard deviation of 913.5 g. Newborn females have weights with a mean of 3046.2 g and a standard deviation of 577.1 g. We need to find out who has the weight that is more extreme relative to the group from which they came: a male who weighs 1600 g or a female who weighs 1600 g?Z-score is a statistical tool that helps to find out the location of a data point from the mean. Z-score indicates how many standard deviations a data point is from the mean. The formula to find z-score is given byz = (x - μ) / σwhere,x = observed value of the variable,μ = mean of the population,σ = standard deviation of the populationUsing the above formula, we can find the z-score of the male as shown below

z = (x - μ) / σ= (1600 - 3269.7) / 913.5= -1.831

Using the above formula, we can find the z-score of the female as shown below

z = (x - μ) / σ= (1600 - 3046.2) / 577.1= -2.499

The more negative the z-score, the more extreme the value is. Therefore, the female newborn with a z-score of -2.499 has the weight that is more extreme relative to the group from which they came.

Therefore, based on the given data and calculations, it can be concluded that the female newborn with a z-score of -2.499 has the weight that is more extreme relative to the group from which they came.

To learn more about sample data visit:

brainly.com/question/30529546

#SPJ11


Events A, B and C are disjoint. For the following
event probabilities: P(A)=0.26, P(B)=0.39, P(C)=0.35, P(D|A)=0.107,
P(D|B)=0.046, P(D|C)=0.071, calculate P(B|D).

Answers

P(B|D) is approximately 0.2547, or 25.47% (rounded to two decimal places).

To calculate P(B|D), we can use Bayes' theorem, which states:

[tex]P(B|D) = (P(D|B) * P(B)) / P(D)[/tex]

We already know P(D|B) = 0.046 and P(B) = 0.39. To find P(D), we can use the law of total probability, which states:

P(D) = P(D|A) * P(A) + P(D|B) * P(B) + P(D|C) * P(C)

Given:

P(D|A) = 0.107

P(A) = 0.26

P(D|B) = 0.046

P(B) = 0.39

P(D|C) = 0.071

P(C) = 0.35

Let's calculate P(D) first:

P(D) = P(D|A) * P(A) + P(D|B) * P(B) + P(D|C) * P(C)

    = (0.107 * 0.26) + (0.046 * 0.39) + (0.071 * 0.35)

    = 0.02782 + 0.01794 + 0.02485

    = 0.07061

Now, we can calculate P(B|D) using Bayes' theorem:

P(B|D) = (P(D|B) * P(B)) / P(D)

      = (0.046 * 0.39) / 0.07061

      = 0.01794 / 0.07061

      ≈ 0.2547

To know more about probability visit:

brainly.com/question/31828911

#SPJ11

simplify the following expression 3 2/5 mulitply 3(-7/5)

Answers

Answer:

1/3

Step-by-step explanation:

I assume that 2/5 and -7/5 are exponents.

3^(2/5) × 3^(-7/5) = 3^(2/5 + (-7/5)) = 3^(-5/5) = 3^(-1) = 1/3

Answer: 136/5

Step-by-step explanation: First simplify the fraction

1) 3 2/5 = 17/5

3 multiply by 5 and add 5 into it.

2) 3(-7/5) = 8/5

3 multiply by 5 and add _7 in it.

By multiplication of 2 fractions,

17/5 multiply 8/5 = 136/5

=136/5

To know more about the Fraction visit:

https://brainly.com/question/33620873

Do people walk faster in an airport when they are departing (getting on a plane) or after they have arrived (getting off a plane)? An interested passenger watched a random sample of people departing and a random sample of people arriving and measured the walking speed (in feet per minute) of each. What type of study design is being performed?
Choose the correct answer below.
A. questionnaire
B. completely randomized experimental design
C. observational study
D. randomized block experimental design

Answers

The study design being performed is an observational study.

The interested passenger watches a random sample of people who are departing (getting on a plane) and a random sample of people who are arriving (getting off a plane) at the airport.

The passenger measures the walking speed of each individual in terms of feet per minute. It is important to note that they are not manipulating any variables or assigning individuals to specific groups.

The study design being performed is an observational study. The passenger is simply observing and collecting data without any direct intervention or manipulation of variables. They are comparing the walking speeds of two separate groups (departing and arriving) but do not have control over these groups.

In an observational study, researchers gather data by observing individuals or groups and measuring variables of interest. They do not interfere with the subjects or manipulate variables. The goal is to understand relationships or differences that naturally occur in the observed population.

Therefore, the study design being performed is an observational study. The interested passenger is observing and measuring the walking speed of people who are departing and arriving at the airport without any direct intervention or control over the groups.

To know more about observational study, visit:

https://brainly.com/question/13303359

#SPJ11

A box has 2θ+1 balls, marked consecutively as −θ,−(θ−1),…,−1,0,1,…,(θ− 1), θ, where θ≥10 is an unknown integer. (So, we know that the box contains at least 21 balls, but not the exact number.) Suppose 20 balls are selected at random and without replacement and the marks on the selected balls, denoted X 1

,…,X 20

are recorded. (a) Find a statistic that is minimal sufficient for θ and derive its distribution. (b) Is the minimal sufficient statistic in (a) also complete.

Answers

Yes, the minimal sufficient statistic is also complete, because the distribution of T depends on θ, and the mean of any function of T is a function of θ. Therefore, any unbiased estimator of zero is also an unbiased estimator of                                     E [g (T)] = ∑ g (t) P (T = t | θ), which is a function of θ.

A statistic that is minimal sufficient for θ and derive its distribution:

Let n = 2θ + 1 be the total number of balls in the box.

Let x1, x2, x20 be the marks on the selected balls.

The number of ways to select 20 balls is (n choose 20).

Let y1, y2, y20 denote the positions of the selected balls.

Then y1 < y2 < < y20, and the number of ways to select the positions is (n choose 20).

Thus, the likelihood function is given by

L(θ) = (n choose 20) 1  [(θ + y 20 - x 20) (θ + y19 - x19)  (θ + y1 - x1)] [(θ - y1 + x1) (θ - y2 + x2) (θ - y20 + x20)]

For fixed x1, x2, ..., x20, the ratio of the likelihood functions for two different values of θ depends only on the product of the terms with θ in each of the two factors, so the likelihood function depends only on ∏ (θ + y - x) and ∏(θ - y + x). The factorization theorem implies that T = X (1) - X (20) is a minimal sufficient statistic for θ. To see this, note that the ratio of the likelihood functions for two different values of θ depends only on the ratio of the products of the terms with θ in each of the two factors, so the likelihood function depends only on T = X (1) - X (20).

It follows that the conditional distribution of X (1), X (20), given T, does not depend on θ, so the distribution of T does not depend on θ either. For fixed T, the likelihood function is proportional to

∏ (θ + y - x) and ∏ (θ - y + x), and these factors are both decreasing functions of θ, so the maximum likelihood estimator of θ is the smallest value of θ that is consistent with the observed values of X (1) and X (20), namely X (1) - T and X (20) + T.(b)

Yes, the minimal sufficient statistic is also complete, because the distribution of T depends on θ, and the mean of any function of T is a function of θ. Therefore, any unbiased estimator of zero is also an unbiased estimator of                                     E [g (T)] = ∑ g (t) P (T = t | θ), which is a function of θ.

To know more about statistic visit:

brainly.com/question/31577270

#SPJ11

What is the probability of getting a total of 5 or less in rolling 3 dice simultaneously? More than 5?

Answers

The probability of getting a total of 5 or less when rolling three dice simultaneously is 10/216 or approximately 4.63%. The probability of getting a total of more than 5 is 206/216 or approximately 95.37%.

The total number of possible outcomes in rolling three dice simultaneously is

6 x 6 x 6 = 216.

Out of these 216 outcomes, there are a total of 10 possible outcomes that add up to 5 or less.

These outcomes are 111, 112, 121, 211, 113, 131, 311, 122, 212, and 221.

Hence, the probability of getting a total of 5 or less is 10/216 or approximately 4.63%.

On the other hand, the probability of getting a total of more than 5 is equal to 1 - (10/216), which is 206/216 or approximately 95.37%.

This means that there are 206 possible outcomes that add up to more than 5. Therefore, the probability of getting a total of more than 5 is much higher than the probability of getting a total of 5 or less.

:In conclusion, the probability of getting a total of 5 or less when rolling three dice simultaneously is 10/216 or approximately 4.63%, while the probability of getting a total of more than 5 is 206/216 or approximately 95.37%.

To know more about probability visit:

brainly.com/question/31828911

#SPJ11

come true or false the students t statistic for testing the significance of a binary predictor to be greater than 2

Answers

The statement students t statistic for testing the significance of a binary predictor to be greater than 2 is false.

We are given that;

Value is greater than 2

Now,

Algebra is the study of abstract symbols, while logic is the manipulation of all those ideas.

The acronym PEMDAS stands for Parenthesis, Exponent, Multiplication, Division, Addition, and Subtraction. This approach is used to answer the problem correctly and completely.

A student's t statistic is used to test the significance of a continuous predictor, not a binary predictor.

If we are testing the significance of a binary predictor, we would use a chi-squared test or a z-test.

A student's t statistic can be less than 0, but that does not imply that the predictor is significant.

Therefore, by algebra the answer will be false.

More about the Algebra link is given below.

brainly.com/question/953809

#SPJ4

Suppose that the middle 68% of monthly food expenditures for a family of four fall between 753.45 and 922.91. Give an approximate estimate of the standard deviation of the expenditures. Assume the expenditures have a normal distribution. 1) −84.73 2) 42.365 3) 838.18 4) 169.46 5) 84.73

Answers

The correct answer is option 5.) 84.73.

We can begin by calculating the mean. Since the middle 68% of monthly food expenditures falls between 753.45 and 922.91, we can infer that this is a 68% confidence interval centered around the mean. Hence, we can obtain the mean as the midpoint of the interval:

[tex]$$\bar{x}=\frac{753.45+922.91}{2}=838.18$$[/tex]

To estimate the standard deviation, we can use the fact that 68% of the data falls within one standard deviation of the mean. Thus, the distance between the mean and each endpoint of the interval is equal to one standard deviation. We can find this distance as follows:

[tex]$$922.91-838.18=84.73$$$$838.18-753.45=84.73$$[/tex]

Therefore, the standard deviation is approximately 84.73.

Learn more about standard deviation:

https://brainly.com/question/29115611

#SPJ11

The perimeter of the rectangular playing field is 396 yards. The length of the field is 2 yards less than triple the width. What are the dimensions of the playing field?

Answers

The dimensions of the rectangular playing field are 50 yards (width) and 148 yards (length).

Let's assume the width of the rectangular playing field is "w" yards.

According to the given information, the length of the field is 2 yards less than triple the width, which can be represented as 3w - 2.

The perimeter of a rectangle is given by the formula: perimeter = 2(length + width).

In this case, the perimeter is given as 396 yards, so we can write the equation:

2((3w - 2) + w) = 396

Simplifying:

2(4w - 2) = 396

8w - 4 = 396

Adding 4 to both sides:

8w = 400

Dividing both sides by 8:

w = 50

Therefore, the width of the playing field is 50 yards.

Substituting this value back into the expression for the length:

3w - 2 = 3(50) - 2 = 148

So, the length of the playing field is 148 yards.

Therefore, the dimensions of the playing field are 50 yards by 148 yards.

See more on perimeter here: https://brainly.com/question/30536242

#SPJ11

A company produces steel rods. The lengths of the steel rods are normally distributed with a mean of 111.7-cm and a standard deviation of 0.8-cm. For shipment, 25 steel rods are bundled together. Find the probability that the average length of a randomly selected bundle of steel rods is between 111.2-cm and 112.1-cm.
P(111.2-cm

Answers

To find the probability that the average length of a randomly selected bundle of steel rods is between 111.2 cm and 112.1 cm, we can use the central limit theorem, which states that the distribution of sample means will be approximately normal regardless of the shape of the population distribution, as long as the sample size is large enough.

In this case, the sample size is 25, which is considered large enough for the central limit theorem to apply.

The mean of the distribution of sample means is equal to the population mean, which is 111.7 cm.

The standard deviation of the distribution of sample means, also known as the standard error, can be calculated by dividing the population standard deviation by the square root of the sample size. In this case, the standard deviation is 0.8 cm, and the sample size is 25, so the standard error is 0.8 / sqrt(25) = 0.16 cm.

To find the probability, we need to calculate the z-scores for the lower and upper limits of the desired range and then use a standard normal distribution table or calculator.

The z-score for 111.2 cm can be calculated as (111.2 - 111.7) / 0.16 = -3.125.

The z-score for 112.1 cm can be calculated as (112.1 - 111.7) / 0.16 = 2.5.

Using the standard normal distribution table or calculator, we can find the corresponding probabilities associated with these z-scores.

The probability that the average length of a randomly selected bundle of steel rods is between 111.2 cm and 112.1 cm is the difference between the two probabilities.

Please note that the values provided are rounded to one decimal place. For a more accurate calculation, you can use the exact values without rounding.

Learn more about central limit theorem here:

https://brainly.com/question/898534

#SPJ11

Other Questions
Using the index cards from Project 10-4, create a database. Enter the customer information. Also add a field for the customer number. (The number is in the top left corner of the card.) Retrieve the list by province and territory; print out a copy of the list. Next, retrieve the list by customer number; then print out a copy of the list. Turn in both printouts to your instructor and, if you wish, place one copy in your e-portfolio. A major factor influencing your choice of clothing for work should bethe products and services offered by your employer Select the correct answer from each drop-down menu. If necessary, round your answers to the nearest whole number. This two-way table shows the models and colors of cars sold at a dealership for the month. Model A Model B9 12BlackRedGray531310The percentage of model A cars sold that are gray is%. The percentage of red cars sold that are model B is%. Submit The central idea of this excerpt is that working in a containment zone is very dangerous. Which phrases from the excerpt most support the central idea?amplified unknown hot agent; high-hazard worklike a space walk; trying to get inside your suitgoing into a containment zone; perform a necropsyimagined that passing; civilian animal caretakers Westwood Furniture Company is considering the purchase of two different machines, as described below: Machine A. A compacting machine has just come onto the market that would permit Westwood Furniture Company to compress sawdust into various shelving products. At present the sawdust is disposed of as a waste product. The following information is available on the machine: a. The machine would cost $483,000 and would have a 10% salvage value at the end of its 13 -year useful life. The company uses straight-line depreciation and considers salvage value in computing depreciation deductions. b. The shelving products manufactured from use of the machine would generate revenues of $390,000 per year. Variable manufacturing costs would be 20% of sales. c. Fixed expenses associated with the new shelving products would be as follows (per year): advertising, $102,200; salaries, $120,000; utilities, $4,000; insurance, $1,800. Machine B. A second machine has come onto the market that would allow Westwood Furniture Company to automate a sanding process that is now done largely by hand. The following information is available: a. The new sanding machine would cost $273,000 and would have no salvage value at the end of its 13 -year useful life. The company would use straight-line depreciation on the new machine. b. Several old pieces of sanding equipment that are fully depreciated would be disposed of at a scrap value of $11,000. c. The new sanding machine would provide substantial annual savings in cash operating costs. It would require an operator at an annual salary of $14,680 and $3,300 in annual maintenance costs. The current, hand-operated sanding procedure costs the company $94,000 per year in total. Westwood Furniture Company requires a simple rate of return of 15% on all equipment purchases. Also, the company will not purchase equipment unless the equipment has a payback period of four years or less. c. The new sanding machine would provide substantial depreciated would be disposed of at a scrap value of $11,000 annual salary of $14,680 and $3,300 in annual maintenance costs. The curh operating costs. It would require an operator at an company $94,000 per year in total. Westwood Furniture Company requires a simple rate of return of 15% on all equipment purchases. Also, the company will not purchase equipment unless the equipment has a payback period of four years or less. Required: 1. For machine A : a. Prepare an income statement showing the expected net income each year from the new shelving products. Use the contribution format. (Round your answers to the nearest whole dollar amount.) b. Compute the simple rate of return. (Round intermediate calculations to the nearest whole dollar amount a decimal place (i.e., 0.123 should be considered as 12.3\%).) c. Compute the payback period. (Round intermediate calculations to the nearest whole dollar amount.) 2. For machine B: a. Compute the simple rate of return. Suppose you file for personal bankruptcy under Ch. 7: 1. Will you be able to keep retirement funds and pensions? Explain. 2. Would your student loan be dischargeable? Explain. 3. Why would a debtor want to reatfirm a debt that would be discharged? I would like you to create a linkedlist from a given input file, I want to learn how to insert, delete, and reverse and write the following to an output file based on data from an input file. Input file: - The first line will be a list of integer numbers separated by a comma. There will not be any space in between. This will never be empty or erroneous characters. - The next few line will have some instructions (can be of ANY order): 1. insert at top tells you to insert some number at top position 2. insert at bottom tells you to insert some number at bottom position 3. insert at position N tells you to insert some number at N 'th position. Remember, we start counting from 0 . In case of position N is not present, you do nothing. 4. reverse tells you to reverse the array 5. print middle tells you to print the middle element. In case of two middle elements (even number of total elements), print both separated by a comma 6. keep unique tells you to keep the first unique presence of an element 7. delete at position N tells you to delete the element at position N. In case of the position N is not present, you do nothing. Output file: Except for the print middle, you always print the LinkedList after each operation in a separate line. ** Input and output files should be read from argv[1] and argv[2]. Hardcoding is strictly prohibited. For example, I would recommend using the following for the header for the main function int main(int argc, char* argv[] ) \{ Please remember chegg instructor that, //argv[1] is the input file filled with data, argv[2] is the prefix for the output file name, so when you are reading input file you can do fin.open(argv[1]) and when you are ready to write to output file, you can do fout.open(argv[2].txt) Example of an inputl.txt file: Assume you are given "ans 1 " for argv[2], Then the output file for the above inputl.txt would look like this: You are allowed to use vector only for reading from the file purpose not for linked list itself, do not use arrays or arraylist or vectors to create linkedlist or substitute in place of a linkedlist. Programming Exercise #5_2 1. Create a new text file named "ex5_1.cpp" and enter the following lines as comments. Be sure to replace "YourFullName" with your real full name. / * * Filename: ex5_2.cpp * Programmer: YourFullName / 8. Next to the above lines, enter the following code which will display a digit (0-6) stored in the variable " w ". The value stored in " w " is generated by the "tm_wday" of the "tm" struct of the "ctime" header to indicate today's "day of week". If the value of "w" is 0, it means "Sunday". If 2, it means "Monday", and so on. \#include #include using namespace std; int main() \{ time tt=time(0); tm dt= localtime (\&t); int w=dt>tm,wday; 1/0-Sun, 1-Mon, 2-Tue, .., 6-Sat \} 9. Use the above given as basis, create a struct named "node" containing three components: (1) one variable named "index" of int type, (2) one variable named "saying" of string type to store one "fortune-cookie saying", and (3) a pointer named "next" of node type. [Hint: review the "real-world sample" section] 10. Create a function named "addnode()" that takes two parameters, one int and one string, to pass the value of "index" and "saying" to the an anonymous instance of the "node" struct. Then, set the "next" pointer to point to the "tail" node. 181 Data Structure and Algorithm - Penn P. Wu, PhD. (Spring 2022 version) 11. Create a function named "findSaying0" that takes one parameter, an int, to pass the value returned by " w " and then use it to search for matching index. Once fond, display the associated saying. 12. In the "main()" function, call the "addnode()" function by passing indexs and sayings as specified below to build a singly linked list using the "node" struct. 13. In the "main()" function, call the "findSaying0" by passing the value stored in " w " to obtain the correct "fortune cookie tips". For example, if the value of " w " is 1 (which means today is Monday), then the output is "1 Believe in yourself and others will too." Make sure the output looks similar to the following. C: \ test\ex5_2.exe 2 Courtesy begins in the home. 2. Capture a screen shot(s) similar to the above one(s) and paste it/them to the Word document (ex05.odc). Question Select a large South African business that trades on the Johannesburg Stock Exchange, on which to conduct research and apply the knowledge management theory you have learnt in this module. Ex Write the equation of the parabola that has the same shape as f(x)=7x^(2) but with vertex (-6,1) in the form f(x)=a(x-h)^(2)+k. f(x) Form your own opinion and evaluate the social effort demonstrated by the Microsoft company. Do you support/approve of their efforts? Why or why not? What more could the company do? Feel free to search the internet on commentary about business social responsibility to support your opinion. cite it INSIDE their paper as well as in the References section at the end of the paper. You measure an oxygen concentration of 55% being delivered by an air-entrainment mask set to deliver 31% oxygen. Which of the following actions is most appropriate?A. Add an aerosol collar to the maskB. Decrease the oxygen input flowC. Check the entrainment portsD. Increase the oxygen input flow A money is an item that has no use apart from serving as a commonly accepted medium of exchange. Modern examples include the dollar, euro, and renminbi. fiat inside outside commodity Question 9When a government confers courts are required to recognize the item as satisfactory payment of any monetary debt, and might settle disputes by requiring payment in the item. Unlike a it does not require the item be accepted in spot market transaction. forced money law; legal tender status legal tender status; forced money law publicly receivable; legal tender status publicly receivable; forced money law Euro-British Pound. How would the call option premium change on the right to buy pounds with euros if the euro interest rate changed to 4.1545% from the initial values listed in this table: The call option on British pounds, if the euro interest rate changed to 4.1545%, would be . (Round to four decimal places.) TOPIC: LaborWhy is hiring and training so expensive to anoperation? Using the fact that the centroid of a triangle lies at the intersection of the triangle's medians, which is the point that lies one-third of the way from each side toward the opposite vertex, find the centroid of the triangle whose vertices are (0,0), (7,0), and (0,13). Choose the correct description of String operator % from the following choices: Floating-point real number Signed decimal integer String set in the past few years, about _____ discrimination complaints were filed with the equal employment opportunity commission. In the two Titanium Dioxide production lines (A and B). The probability that line A is operating is 0.85, the probability that line B is operating is 0.8, and the probability that both A and B are operating is 0.71. Given that line A is operating, what is the probability that line B is operating as well? A borrower and a lender agreed that after 25 years loan time theborrower will pay back the original loan amount increased with 117percent. Calculate loans annual interest rate.it is about compound