Write a Matlab program to compute the height, h covered by a freely falling object in time t. The formula is h=1/2 gt² Have the user input the values of g and t

Answers

Answer 1

Here's a MATLAB program that calculates the height covered by a freely falling object:

% Prompt the user for input

g = input('Enter the value of g: ');

t = input('Enter the value of t: ');

% Compute the height

h = 0.5 * g * t^2;

% Display the result

fprintf('The height covered by the object is: %.2f units\n', h);

In this program, the user is prompted to enter the values of g (acceleration due to gravity) and t (time). The formula for calculating the height, h, is then applied using the provided values. Finally, the program displays the calculated height on the screen.

You can learn more about MATLAB program at

https://brainly.com/question/13974197

#SPJ11


Related Questions

Write the Matlab command to delete the entire 4 th column in matrix A

Answers

Answer:

Sure, it's simply A(:,4) = [];

X=[245689] Y=[5 9 10 13 17 20]; Write a command in Matlab to plot the data above with black asterisk

Answers

To plot the given data points X=[245689] and Y=[5 9 10 13 17 20] in MATLAB with black asterisks, you can use the plot() function with the 'k*' specifier.

In MATLAB, you can plot data using the plot() function. To plot the given data points with black asterisks, you need to provide the X and Y coordinates as arguments to the plot() function and specify the marker style and color.

Here's the MATLAB command to plot the data:

X = [2 4 5 6 8 9];

Y = [5 9 10 13 17 20];

plot(X, Y, 'k*');

In this command, the 'k*' argument specifies that the markers should be black asterisks ('*') and the line connecting the markers should be omitted. The X and Y arrays contain the respective data points to be plotted.

Executing this command will generate a plot where the data points are represented by black asterisks. The X values will be plotted on the x-axis, and the corresponding Y values will be plotted on the y-axis.

Learn more about  MATLAB here :

https://brainly.com/question/30763780

#SPJ11

when using a bubble sort to sort a 10-element array, on the fourth pass through the array list you detect that no swap has occurred. this indicates .

Answers

When using a bubble sort algorithm to sort a 10-element array, if on the fourth pass through the array list no swap has occurred, it indicates that the array is already sorted, and further passes are unnecessary.

The bubble sort algorithm works by repeatedly comparing adjacent elements and swapping them if they are in the wrong order. In each pass, the algorithm moves through the array and compares adjacent elements, swapping them if necessary. This process continues until the array is sorted, with no more swaps needed.

If, on the fourth pass, no swap has occurred, it means that during the previous passes, all the elements were already in their correct positions. This indicates that the array is already sorted, and there is no need to continue with further passes. The algorithm can terminate at this point, saving unnecessary iterations and improving efficiency.

Detecting the absence of swaps on a pass is an optimization technique that helps to minimize the number of iterations required for sorting. It allows for early termination of the sorting process when no further swaps are needed, resulting in improved performance for already sorted or partially sorted arrays.

In summary, if no swap occurs during the fourth pass of a bubble sort algorithm on a 10-element array, it indicates that the array is already sorted, and additional passes can be skipped, resulting in time-saving and improved efficiency.

Learn more about array here

https://brainly.com/question/28565733

#SPJ11

Which of the following describes organizations that
self-regulate via feedback loops?
Group of answer choices
Cybernetics
Chaos Theory
Scientific Management
Classical Organization Theory

Answers

Organizations that self-regulate via feedback loops can be described as applying principles of cybernetics.

Cybernetics is a field that deals with systems and control processes, specifically focusing on the study of feedback loops and self-regulation. Organizations that employ self-regulation through feedback loops can be seen as applying cybernetic principles to their operations. In this context, feedback loops refer to the process of gathering information about a system's performance, comparing it to desired outcomes, and making necessary adjustments to achieve those outcomes.

By using feedback loops, organizations can monitor their activities, evaluate their performance, and make continuous improvements. Feedback loops involve collecting data, analyzing it, and using the insights gained to adjust behaviors, processes, or strategies. This iterative process enables organizations to adapt to changes, optimize their performance, and achieve desired outcomes.

In summary, organizations that self-regulate via feedback loops can be understood as implementing principles from cybernetics. They utilize feedback mechanisms to monitor and adjust their operations, aiming to improve performance and achieve their goals.

Learn more about Cybernetics here:

https://brainly.com/question/32095235

#SPJ11

Q2 A drilling machine is to have 8 speeds ranging from 100 rev/min to 1000 rev/min. If the speeds form a geometric progression, determine individual speed correct to the nearest whole number by using an appropriate standard engineering software such as MATLAB, CAS calculator, programmable calculator, Excel software.

Answers

The individual speeds of a drilling machine with 8 speeds forming a geometric progression ranging from 100 rev/min to 1000 rev/min, an appropriate standard engineering software like MATLAB, CAS calculator, programmable calculator, or Excel software can be used.

Using engineering software like MATLAB, CAS calculator, programmable calculator, or Excel software, we can calculate the individual speeds of the drilling machine accurately.

To find the individual speeds forming a geometric progression, we need to determine the common ratio (r) of the progression. The common ratio can be calculated by taking the ratio of the final speed to the initial speed, raised to the power of 1 divided by the number of speeds minus 1 (n-1). In this case, the final speed is 1000 rev/min, the initial speed is 100 rev/min, and the number of speeds is 8.

Once the common ratio is obtained, we can calculate the individual speeds by multiplying the initial speed by the common ratio raised to the power of (i-1), where i represents the position of the speed in the progression.

By utilizing the capabilities of an appropriate engineering software, the individual speeds can be computed accurately to the nearest whole number, ensuring the desired range and geometric progression are achieved for the drilling machine.

Learn more about MATLAB here:

https://brainly.com/question/17372662

#SPJ11

The Lexical Protolanguage hypothesis argues that languages began
_____.
1. With words referring to things or events but lacked
grammar
2. As vocal displays signaling mating quality that eventually
evo

Answers

The Lexical Protolanguage hypothesis argues that languages began 1. With words referring to things or events but lacked grammar

What was  Lexical Protolanguage hypothesis ?

A lexical protolanguage presumes, as prerequisites, the capacity and desire for referential communication as well as the ability for vocal imitation  which is needed to build a shared spoken vocabulary.

A language family is thought to have originated from the proto-language, a hypothetical original language from which several documented languages are thought to have descended. Proto-languages are typically unattested or, at most, only slightly attested.

Learn more about languages at;

https://brainly.com/question/10585737

#SPJ1

complete question;

The Lexical Protolanguage hypothesis argues that languages began _____.

1. With words referring to things or events but lacked grammar

2. As vocal displays signaling mating quality that eventually evolved meanings connected to specific syllables.

3. When hominins gained the FOXP2 mutation allowing them to fully produce speech.

4. With gestures referring to things or events combined with some sounds

which of the following statements is true?which of the following statements is true?c is an object-oriented programming language.hardware controls software.software controls hardware.both (b) and (c) are true.

Answers

The statement that is true among the options provided is: both (b) and (c) are true.

- (b) "Hardware controls software" is true because hardware components provide the underlying physical infrastructure and resources that software relies on. The hardware executes instructions and provides the necessary computational capabilities and data storage for software to run.

- (c) "Software controls hardware" is also true because software, specifically operating systems and device drivers, acts as an intermediary layer between applications and the underlying hardware. Software interfaces with the hardware, manages its resources, and provides abstractions and control mechanisms for applications to utilize the hardware effectively.

Together, these statements highlight the symbiotic relationship between hardware and software. Hardware provides the foundation and capabilities, while software leverages and controls the hardware to perform various tasks and execute programs.

Learn more about statement here

https://brainly.com/question/30236893

#SPJ11

CompSMAP 2022 > MATLAB summative assessment > Intermediate MATLAB - Matrix manipulation O solutions submitted (max Unlimited) Write a function that will take as input a square matrix my InputMatrix wh

Answers

The function can be written as

How to write the function

function [isInvertible, matrixInverse] = check_and_invert(my_InputMatrix)

   % Initialize matrixInverse as a matrix of zeros with the same size as my_InputMatrix

   matrixInverse = zeros(size(my_InputMatrix));

   % Check if the input is a square matrix

   if size(my_InputMatrix, 1) ~= size(my_InputMatrix, 2)

       error('Input must be a square matrix')

   end

   % Calculate the determinant of the matrix

   determinant = det(my_InputMatrix);

   % If the determinant is non-zero, the matrix is invertible

   isInvertible = (determinant ~= 0);

   % If the matrix is invertible, calculate its inverse

   if isInvertible

       matrixInverse = inv(my_InputMatrix);

   end

end

Read more on Matlab functions here https://brainly.com/question/13974197

#SPJ4

Write a function that will take as input a square matrix my InputMatrix whose components are all integers and will return: .isInvertable - A boolean that should be True if the matrix is invertable and False if the matrix cannot be inverted. • matrixInverse - #the matrix is invertable, this should be the inverse of the matrix. If the matrix is not invertable this should be square matrix of zeros with the same shape as my Input Matrix

consider the following array of numbers: 5 6 7 7 7 8 8 9 9 9 10 15 19 20 21. in the array provided, what is the median?

Answers

The median value of the following array of numbers: 5 6 7 7 7 8 8 9 9 9 10 15 19 20 21 is 9.

Step-by-step explanation:

To find the median value in the array, we must first sort the numbers in order of magnitude from least to greatest. This is the sorted array of numbers: 5 6 7 7 7 8 8 9 9 9 10 15 19 20 21.There are 15 numbers in the array. The median value is the value at the exact center of the array.

Since there are an odd number of values in the array, there is only one value that is exactly in the middle, and it is the value that is between the seventh and eighth numbers. The value at this position is 9, so the median value of the array is 9. Therefore, the answer is 9.

Learn more about

https://brainly.com/question/11237736

The median, a concept in mathematics, is the middle value of a sorted set of numbers. In the given array, the median is the 8th number, which is 8.

In mathematics, the median is the number that separates the higher half from the lower half of a data set.

This is found by arranging all the numbers in the data set from smallest to largest, and then picking the number in the middle. If there is an even number of observations, the median will be the average of the two middle numbers.

In the given array of numbers, if we arrange them from smallest to largest, we get: 5 6 7 7 7 8 8 9 9 9 10 15 19 20 21. This array has 15 numbers, so the middle number is the 8th number, which is 8.

Thus, the median of the provided array is 8.

Learn more about Median here:

https://brainly.com/question/32773662

#SPJ2

Create a script file "arca.m" that prompts the user to input the length (a vector), calculates the areas of a circle and a square using this length, and displays the answers in the command window. You need to use input and fprintf functions in your script file. Keep your answer to 2 decimal places.
For example: in the command window, the user gives leng-- [2 3 4] (the "leng" can be an arbitrary vector), and after types area,
>> leng [2 3 4];
>> area
The user will get a prompt to input the length: Enter the length of the radius/side: leng Then the user will get the results as below:
The area of the circle/square are 12.57 and 4.00 respectively
The area of the circle/square are 28.27 and 9.00 respectively
The area of the circle/square are 50.27 and 16.00 respectively

Answers

The script file "arca.m" prompts the user to input the length (a vector), calculates the areas of a circle and a square using this length, and displays the answers in the command window.

You need to use input and printf functions in your script file. Please just keep your answer to 2 decimal places: It is quite common in MATLAB to use script files to accomplish a task quickly and efficiently. A script file is a simple ASCII file that contains MATLAB commands.

The first thing to do is to create a script file called arca.m to accomplish the task specified. Navigate to the current working folder and select New > Script from the Home tab. Write the commands in the script editor as shown in the image:

MATLAB script files are a powerful tool for performing a task quickly and efficiently. We have created a script file called arca.m, which accepts user input, calculates the areas of a circle and a square using this length, and displays the answers in the command window. We have used input and printf functions in the script file, as specified in the prompt. We have also kept the answer to 2 decimal places, as required.

To know more about MATLAB, visit:

brainly.com/question/30763780

#SPJ11

What was the hypothesis of the X-linked cross conducted in the lab with the white mutation in Drosophila and written up in your lab report? For the toolbar, press ALT +F10 (PC) or ALT +FN+F10 (Mac). The genes for mahogany eyes and ebony body are approximately 30 map units apart on chromosome 3 in 0 Prosophint female was mated to an ebony-bodied male and that the resulting F. phenotypicmlly wild-type fomates were mated to mahogany offepring, what would be the expected phenotypes, and in what numbers would they be expected? For the toolbar, press ALT +F10 (PC) or ALT +FN+F10 (Mac).

Answers

The expected phenotype ratio is 1:1:1:1. The offspring would be expected to have wild-type eyes and wild-type bodies.

The hypothesis of the X-linked cross conducted in the lab with the white mutation in Drosophila and written up in the lab report was that genes are located on chromosomes and exhibit sex-linkage. The X-linked recessive mutation responsible for white eyes in Drosophila melanogaster was studied in this experiment.The result showed that the gene for white eyes was located on the X chromosome and was sex-linked.

Because females have two X chromosomes and males have only one, the inheritance of white eyes was different between the two sexes.In Drosophila, the genes for mahogany eyes and ebony body are approximately 30 map units apart on chromosome 3.

If a 0 Prosophila female was mated to an ebony-bodied male and the resulting F1 phenotypically wild-type females were mated to mahogany offspring, the expected phenotypes and numbers would be as follows:¼ of the offspring would be expected to have mahogany eyes and ebony bodies.¼ of the offspring would be expected to have wild-type eyes and ebony bodies.¼ of the offspring would be expected to have mahogany eyes and wild-type bodies.¼ of the offspring would be expected to have wild-type eyes and wild-type bodies. The expected phenotype ratio is 1:1:1:1.

Learn more about phenotype :

https://brainly.com/question/32129453

#SPJ11

8. centralized systems are more susceptible to security threats than client/server architectures. 1 point true false

Answers

The statement "centralized systems are more susceptible to security threats than client/server architectures" is subjective and cannot be answered with a simple true or false.

The susceptibility to security threats depends on various factors, including the implementation and configuration of the systems, the security measures in place, and the expertise of system administrators.

Both centralized systems and client/server architectures can be vulnerable to security threats, but the level of susceptibility can vary. Centralized systems, where all resources and data are stored and managed in a single location, can be attractive targets for attackers as compromising the central system can provide access to a wealth of information. However, centralized systems can also implement robust security measures and access controls to protect against threats.

On the other hand, client/server architectures distribute resources and responsibilities across multiple interconnected systems, which can potentially introduce additional points of vulnerability. However, the distributed nature of client/server architectures also allows for the implementation of security measures at various levels, such as firewalls, intrusion detection systems, and encryption, which can enhance overall security.

Ultimately, the susceptibility to security threats depends on various factors, and it is essential to assess and implement appropriate security measures in both centralized and client/server systems to mitigate potential vulnerabilities and protect against security threats effectively.

Learn more about  vulnerabilities here :

https://brainly.com/question/30296040

#SPJ11

custom segments may be created using which criteria? select one or more: mobile device model browser operating system mobile device branding

Answers

Custom segments allow you to define unique user groups based on these criteria, helping you tailor your marketing efforts or gain insights into user behavior based on the chosen segmentation criteria.

Custom segments can be created using the following criteria:

- **Mobile device model**: You can create a custom segment based on specific mobile device models. This allows you to target users who are using particular mobile devices.

- **Browser**: Creating a custom segment based on the browser enables you to target users who are using a specific web browser. This can be useful for tailoring experiences or tracking performance metrics for different browsers.

It's important to note that you can select one or more of these criteria to create custom segments, depending on your specific targeting or analysis needs. Custom segments allow you to define unique user groups based on these criteria, helping you tailor your marketing efforts or gain insights into user behavior based on the chosen segmentation criteria.

Learn more about segmentation here

https://brainly.com/question/24297513

#SPJ11

traditional process is injection moulding and the
additive manufacturing process is laser material deposition.
please try to be a detailed as possible and include
all the points, appreciated.
b) considers the design considerations needed for using AM processes; and c) justifies suggested finishing techniques for the components. Your report should include the following: the advantages of Additive manufacturing processes (in terms of their ability to produce different components, with reference to the complexity that can achieve by redesigning them to suit Additive manufacturing. You should also consider reduction in lead times, mass and cost, and the ability to manufacture assembled product. The disadvantages of using Additive manufacturing processes compared to traditional manufacturing methods. This should consider the consequences of redesigning products/components, material choices, cost of capital equipment, and the volume of manufacture and process speeds. Design considerations including distortion, surface finish, support structures, and how Additive manufacturing can be linked to Computer Aided Design (CAD).

Answers

Additive Manufacturing (AM) processes, such as laser material deposition, offer advantages in terms of producing complex components, reducing lead times, mass, and cost, and enabling the manufacturing of assembled products.

However, there are also disadvantages to consider, including the need for product/component redesign, material choices, capital equipment costs, volume of manufacture, and process speeds. Design considerations for AM include distortion, surface finish, support structures, and integration with Computer-Aided Design (CAD).

Additive Manufacturing processes, such as laser material deposition, have several advantages over traditional manufacturing methods. One advantage is the ability to produce components with intricate designs and complex geometries that would be difficult or impossible to achieve with traditional processes like injection moulding. AM allows for freedom in design, enabling the optimization of components for specific functions and requirements.

AM processes also offer benefits in terms of reduced lead times, as they eliminate the need for tooling and setup associated with traditional methods. This can result in faster production cycles and quicker product iterations. Additionally, AM can reduce the overall mass of components by using only the necessary materials, leading to lighter-weight products. This can be advantageous in industries such as aerospace, where weight reduction is critical.

Cost savings can also be achieved with AM, particularly in low-volume production scenarios. Traditional manufacturing methods often involve high tooling and setup costs, whereas AM processes eliminate these expenses. Furthermore, AM allows for the production of assembled products with integrated features, reducing the need for manual assembly processes.

Despite these advantages, there are some disadvantages to consider when using AM processes. One drawback is the need for product/component redesign. AM often requires adjustments to the design to accommodate the specific capabilities and limitations of the chosen process. Material choices can also be limited in AM, as not all materials are suitable for additive processes. This can impact the functional properties and performance of the final component.

The cost of capital equipment for AM can be relatively high compared to traditional manufacturing machines. This can pose a barrier to entry for small-scale manufacturers or those with limited budgets. Additionally, AM processes may not be suitable for high-volume production due to slower process speeds and limitations in scalability.

Design considerations for AM include managing distortion during the printing process, achieving desired surface finish, and designing support structures to ensure proper part stability. Integration with CAD systems is crucial for leveraging the full potential of AM, as CAD software can aid in designing and optimizing components for additive processes.

In conclusion, while AM processes offer unique advantages such as complex geometries, reduced lead times, and cost savings in certain scenarios, there are also challenges to consider, including redesign requirements, material limitations, equipment costs, and process speeds. Design considerations for AM focus on addressing distortion, achieving desired surface finish, optimizing support structures, and utilizing CAD software for efficient design and optimization.

Learn more about Additive Manufacturing  here:

https://brainly.com/question/31058295

#SPJ11

Description of your Projects - chipotle
Project 2 - Implementing technology and software of the highest quality.
Introduce your second project. This project can be a more traditional project that benefits the customer and one other stakeholder or the stockholder. Again, try to be creative but constrained by reality. Several paragraphs should be used to describe the project. In this description include the parties that benefit and why you believe this fits the strategy of Chipotle.

Answers

Focuses on enhancing digital ordering and delivery systems, benefiting customers and stockholders while aligning with Chipotle's strategy of leveraging technology for growth and customer satisfaction.

Project 2: Enhancing Digital Ordering and Delivery Systems

In our second project, Chipotle aims to enhance its digital ordering and delivery systems to provide a seamless and convenient experience for customers while benefiting both the customers and the stockholders. This project aligns with Chipotle's strategy of leveraging technology to drive growth, improve operational efficiency, and increase customer satisfaction.

The primary objective of this project is to develop and implement an advanced digital platform that integrates online ordering, mobile app functionalities, and efficient delivery systems. By investing in technology and software solutions of the highest quality, Chipotle aims to streamline the entire ordering and delivery process, providing customers with a more personalized and efficient experience.

Customers will benefit from the enhanced digital ordering and delivery systems in several ways. Firstly, they will have access to a user-friendly and intuitive mobile app that allows them to easily browse the menu, customize their orders, and place their requests for pickup or delivery. The platform will provide real-time order tracking, allowing customers to monitor the progress of their orders and receive accurate estimated delivery times.

Additionally, the implementation of advanced algorithms and data analytics will enable personalized recommendations based on customers' preferences and previous orders. This personalized approach will enhance customer satisfaction by offering tailored suggestions and promotions, further increasing customer loyalty and engagement.

From a stockholder perspective, this project holds immense value. By optimizing the digital ordering and delivery systems, Chipotle can attract a larger customer base and increase order volumes. The streamlined processes and improved operational efficiency will lead to reduced costs, such as labor and order errors, contributing to higher profit margins.

Moreover, the project's focus on digital transformation aligns with the industry trends and the changing preferences of customers, positioning Chipotle as a leader in the market. By leveraging technology effectively, Chipotle can differentiate itself from competitors, creating a sustainable competitive advantage and driving long-term growth.

To know more about software visit :

https://brainly.com/question/32393976

#SPJ11

how do people crowd source?
A. By using a blog to get people to listen to you
B. By getting a crowd to take political action
C. By asking a question on a social networking site
D. By sending surveys to every home in america​

Answers

The reason why people crowd source is best described by option C

C. By asking a question on a social networking site

What is crowdsourcing

Crowdsourcing refers to the practice of obtaining input, ideas, or contributions from a large group of people, typically through an online platform.

While various methods can be used for crowdsourcing, option C, asking a question on a social networking site, is one common way to engage a large number of individuals and collect their opinions, feedback, or suggestions.

By posting a question on a social networking site, individuals can tap into the collective knowledge and experiences of a diverse crowd. This approach allows for a wide range of responses and perspectives, enabling the crowd to contribute their insights, ideas, and solutions to a particular problem or topic.

Learn more about crowd source at

https://brainly.com/question/11356413

#SPJ1

Other Questions
Disney, Apple and AT&T have all rolled out new streaming services over the past few years. Applying Five Forces analysis in the streaming services industry, these firms are...A.SuppliersB.BuyersC.RivalsD.New EntrantsE.Substitutes Select the TRUE statement about endocrine and synaptic signaling a. Endocrine signaling involves physical contact between the signal-producing cell and the target cell. b. In synaptic signaling, neurotransmitters are released into the bloodstream and circulated throughout the body. c. Synaptic signaling often uses amphipathic ligands that bind intracellular receptors. d. Endocrine signaling allows a single signaling ligand to coordinate a whole body response. Several different species of birds-of-paradise dancing and using some pretty incredible displays. These displays are costly phenotypes in terms of the energy they require and the potential reduction of survival due to predation that results from dancing. These types of displays would best be described as examples of the:a) direct benefits hypothesisb) runaway selection hypothesisc) good genes hypothesisd) genetic compatibility hypothesis When considering the entirety of the hip complex, both the leftand right sides, how many bones compose the complex? An isomer isGroup of answer choicesO A type of proteinO An atom with the same number of protons but different number of electronsO A molecule with the same molecular formula but a different molecular structureO A charged atom The amount of mass within the system remained constantduring a process for____ What is the benefit of using polymerase chain reaction assays to detect pathogens in food? How does quantitative PCR superior from conventional PCR, and what the advantages of qPCR? What is a drawback to this methodology compared to conventional culture-based methods? An alien pilot of an intergalactic spaceship is traveling at 0.89c relative to a certain galaxy, in a direction parallel to its short axis. The alien pilot determines the length of the short axis of the galaxy to be 2.310^17 km. What would the length of this axis be as measured by an observer living on a planet within the galaxy? length of the axis: _____km could I have help writing the abstract? And what would be anappropriate title for the lab report?Abstract: The abstract is a brief summary of the experiment. It should contain a sentence or two of introduction that gives some background information. The rest is a combination of results and discus Close command In multline command close multiple lines by linking the last parts to the first pieces. False O True O Excercise Derive the scalar and Spinor equations of motion using the relativic Lagrange equation. (2) Find the energy and of these fields. momentum lb the system Find the equation of motion of describ "Q1.7. What would happen if you could magically turn offdecomposition in a forest?a. Not much would change except deer and other herbivores wouldhave more plants to eat.b. As plants continue to grow they grow unevenly." A block is given an initial rel relatya 6.00m/s up a frictionless 30.00 incline. How to up the incline how the block side before coming to rest? (g=10m/2) Q8. In the inverted crank-slider shown, link 2 is the input and link 4 is the output. If OO = 27 cm and OA = 18 cm, then the total swinging angle of link 4 about O, is found to be: c) 83.6 a) 45 b) 72.3 d) 89.4 e) 60 f) None of the above Q9. The time ratio of this mechanism is found to be: c) 2.735 d) 1.5 e) 2.115 f) None of the above a) 1.828 b) 3.344 Q10. Assume that in the position shown, link 2 rotates at 10 rad/s hence causing link 4 to rotate at 4 rad/s. If the torque on link 2 is 100 N.m, then by neglecting power losses, the torque on link 4 is: c) 500 N.m. d) 650 N.m e) None of the above. a) 250 N.m b) 375 N.m Im 02 LETTERS 2 4 3 A - Re You own a company that produces chairs, and you are thinking about hiring one more employee. Each chair produced gives you revenue of $10. There are two potential employees, Fred and Sylvia. Fred is a fast worker who produces 10 chairs per day, creating revenue for you of $100. Fred knows that he is fast and so will work for you only if you pay him more than $80 per day. Sylvia is a slow worker who produces only five chairs per day, creating revenue for you of $50. Sylvia knows that she is slow and so will work for you if you pay her more than $40 per day. Although Sylvia knows she is slow and Fred knows he is fast, you do not know who is fast and who is slow. So this is a situation of adverse selection.a) Since you do not know which type of worker you will get, you think about what the expected value of your revenue will be if you hire one of the two. What is that expected value?b) Suppose you offered to pay a daily wage equal to the expected revenue you calculated in part a. Whom would you be able to hire: Fred, or Sylvia, or both, or neither?c) If you know whether a worker is fast or slow, which one would you prefer to hire and why? Can you devise a compensation scheme to guarantee that you employ only the type of worker you prefer? "Summer Sunglasses" has debt in the form of zero-coupon bonds with a face value of $25,000 which is due in one year. Today's value of "Summer Sunglasses"' ' assets is $26,100. "Summer Sunglasses" ' assets return standard deviation is 41 percent per year. The annual Treasury-bill, or risk-free, rate is 5 percent, compounded continuously. "Winter Boots" has debt in the form of zero-coupon bonds with a face value of $37,000 which is due in one year. Today's value of "Winter Boots" ' assets is $40,400. "Winter Boots" ' assets return standard deviation is 44 percent per year. Now, let's say, these two companies, Summer Sunglasses and Winter Boots have decided to merge. The seasonality of the two companies' sales revenues creates the diversification effect. As a result, the newly created firm's (Winter Sunglasses \& Summer Boots) assets return standard deviation is only 21 percent per year. a-1.Calculate the sum of market values of equity of "Summer Sunglasses" and "Winter Boots". (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) a. Calculate the sum of market values of debt of "Summer Sunglasses" and "Winter 2. Boots". (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) b. Calculate the market value of equity of the newly created "Winter Sunglasses \& 1. Summer Boots". (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) b. Calculate the market value of debt of the newly created "Winter Sunglasses \& 2. Summer Boots". (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) c-1. Calculate the gain or loss for stockholders as a result of this merger. (A loss should be indicated by a minus sign. Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) c- Calculate the gain or loss for bondholders as a result of this merger. (A loss should 2. be indicated by a minus sign. Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) A hydraulic reservoir pressurised to 12,5 kPa contains a fluid with a density of 960 kg/m. The reservoir feeds a hydraulic pump with a flow rate of 10 l/s through a filter with a shock loss constant (k) of 4.After the pump, there are two bends, each with a shock loss constant (k) of 0,85 and a selector valve with a length to diameter ratio of 60. The actuator requires a pressure of 4,25 MPa to operate. The actuator is located 6 m lower than the fluid level in the reservoir. A 30 mm diameter pipe of 15 m connects the components. The pipe has a friction coefficient of 0,015. Calculate: 6.2.1 The total length to diameter ratio of the system (ignore entrance loss to the pipe.) 6.2.2 The total head loss throughout the system 4. Distinguish between sex determination chromosomal patterns in birds, flies, and mammals. Define & describe the usefulness of a Reciprocal Cross. 5. Define & explain the significance of Cytoplasmic We are analyzing an engine piston and cylinder setup. If the crank AB has a constant clockwise angular velocity of 2000 rpm (rpm is rounds per minute every one round is 2 radians use that to convert rpm to radians per second), determine the forces on the connection rod at B and D. Assume BD to be a uniform, slender rod of mass 4 lbm. Piston P weights 5 lb. HINT: Draw the free body diagram of member BD just the same way as you did back in statics. Set up the force and moment equations. Find the reaction forces. "Mammalogy" is the study of Mammals. The implication is that we are "studying" a Monophyletic group i.e., the Organisms in this group "share" Characteristics that make them more "closely" related to each other than to any other Organisms. "Herpetology" is the study of Reptiles and Amphibians. Using the information in the tree illustrated below, discuss whether or not "Herpetology" is the study of a Monophyletic group. If it is not, how would you alter the material that would be covered in a "Herpetology" course to ensure you were examining Monophyletic groups (you should provide 2 alternative scenarios). - Starfish- Sharks and Rays - Bony Fish - Amphibians - Reptiles - Mammals