Question

A fence is required around a field is shaped as shown below. It consists of a rectangle of length Land width Wand a right tri

0 0
Add a comment Improve this question Transcribed image text
Answer #1

============ (1) ============

Let us calculate the area and periphery first.

As the right angle trianlge is symmetrical about the central horizontal axis, observe the following:

1585892742248_blob.png

It is to be noted that, the value of the triangle dimension is calculated using pythagoras theorem (as the triangle is a right angled triangle)

This gives the total periphery as:

Perimeter\,(P) = W+2L + 2\left ( \frac{W}{\sqrt{2}} \right )=W(\sqrt{2}+1)+2L

Area\,(A) = (W\times L)+\left [ \frac{1}{2}\times \frac{W}{\sqrt{2}}\times \frac{W}{\sqrt{2}} \right ]=\frac{W^2}{4}+WL

These formulations will be used int he next subsections:

============ (2) and (3) ============

Please find the required MATLAB script for the two pars as the following:

%==========================================================================

clear all;clc;

%================================= (2) =================================
% Given data:
W = 7:0.1:20; % Given width range
A = 111;

% Calculating Length (L) as from the calculated Area formulation:
L = (A - ((W.^2)/4))./W;

% Calculating perimeter as:
P = W*(sqrt(2) + 1) + (2*L);

figure
plot(W,P,'k','LineWidth',1.2)
hold on
xlabel('Width (W) meters')
ylabel('Perimeters (P) meters')
title('Width (W) v/s Perimeter (P)');
xlim([min(W) max(W)])
grid on

%================================= (3) =================================
% Finding minmum paremeter

min_Perimeter_Index = find(P==min(P));
min_Perimeter = P(min_Perimeter_Index);
min_Peri_Length = L(min_Perimeter_Index);
min_Peri_Width = W(min_Perimeter_Index);
plot(min_Peri_Width,min_Perimeter,'bd','MarkerSize',10);
fprintf('To fence off the 111 m^2 are, the minimum perimeter (P) = %f\n',min_Perimeter);
fprintf('Corresponding Length (L)= %f and Width (W) = %f\n',min_Peri_Length,min_Peri_Width);

%==========================================================================

output:

To fence off the 111 m^2 are, the minimum perimeter (P) = 41.229062
Corresponding Length (L)= 7.577778 and Width (W) = 10.800000

Note: Please find the diamond marker at the bottom indicating minimum Width value corresponding to minimum Perimeter.

Hope this helps!

In case of any clarification, please comment.

**************************** PLEASE THUMBS UP!!!!!!!!!!!!!!!!!!!!!!!! ****************************

Add a comment
Know the answer?
Add Answer to:
A fence is required around a field is shaped as shown below. It consists of a...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • please answer all C. 2. What rectangle has the smallest perimeter, for a given area? Suppose...

    please answer all C. 2. What rectangle has the smallest perimeter, for a given area? Suppose you want a rectangle with area 200. What choice of length L and width W will give the smallest perimeter? a. Sketch a rectangle and label it as having length L and width W. b. Write the area in terms of length and width: A = Write the perimeter in terms of length and width: P = d. If L = 200 and W...

  • Of all rectangles with area 100, which one has the minimum perimeter? Let P and w...

    Of all rectangles with area 100, which one has the minimum perimeter? Let P and w be the perimeter and width, respectively, of the rectangle. Write the objective function in terms of P and w. Assume that the width is less than the length if the dimensions are unequal. P= (Type an expression.) The interval of interest of the objective function is (Simplify your answer. Type your answer in interval notation.) Of all rectangles with area 100, the one with...

  • Problem 1. For the trapezoidal channel cross section shown below, find the following geometric quantities in...

    Problem 1. For the trapezoidal channel cross section shown below, find the following geometric quantities in terms of bottom width b, flow depth y, and side slope m. Provide the appropriate dimensions for each tem using the L-T-F (Length-Time-Force) system. For example, [b] L (a) Flow area, A (b) Wetted perimeter, P (c) Hydraulic radius, R (d) Top water surface width, T A (e) Hydraulic depth, D= T Problem 2. Write a function in Matlab that calculates each of the...

  • The Green Monster, as shown below, is a wall 37 feet high in left field at...

    The Green Monster, as shown below, is a wall 37 feet high in left field at Fenway Park in Boston. The wall is 310 feet from home plate down the third base line. If the batter hits the ball 4 feet above the ground, neglecting air resistance, determine the minimum speed that the bat must impart to the ball that is hit over the Green Monster. COVIDIE CVS. ELABOR The equations of motions for the baseball are x(t) = (u...

  • Required information Area of Rectangles and Triangles As we progress in economics courses, there are some...

    Required information Area of Rectangles and Triangles As we progress in economics courses, there are some concepts that are best handled geometrically as opposed to (or in addition to) algebraically. We might, for example, need to calculate the area of a triangle, a rectangle, or a trapezoid. Therefore, this document will cover the basics of each, and give examples for practice. The area of a rectangle or square A rectangle is a four-sided figure that has two sets of parallel...

  • Required information Area of Rectangles and Triangles As we progress in economics courses, there are some...

    Required information Area of Rectangles and Triangles As we progress in economics courses, there are some concepts that are best handled geometrically as opposed to (or in addition to) algebraically. We might, for example, need to calculate the area of a triangle, a rectangle, or a trapezoid. Therefore, this document will cover the basics of each, and give examples for practice. The area of a rectangle or square A rectangle is a four-sided figure that has two sets of parallel...

  • Required information Area of Rectangles and Triangles As we progress in economics courses, there are some concepts that...

    Required information Area of Rectangles and Triangles As we progress in economics courses, there are some concepts that are best handled geometrically as opposed to (or in addition to) algebraically. We might, for example, need to calculate the area of a triangle, a rectangle, or a trapezoid. Therefore, this document will cover the basics of each, and give examples for practice. The area of a rectangle or square A rectangle is a four-sided figure that has two sets of parallel...

  • by using matlab linreg() function file given below On average, the surface area A of human...

    by using matlab linreg() function file given below On average, the surface area A of human beings is related to weight W and height H. Measurements of several individuals of height 180cm are provided below. It is believed that the following data can be modelled using an exponential equation A = aeBW W (kg) 70 2.1 75 2.12 77 2.15 80 2.20 82 2.22 84 2.23 87 2.26 90 2.30 A (m2) A. Show by hand with pen and paper...

  • Project 1 – Classes and Top-down Design Overview Software development projects using the object-oriented approach involve...

    Project 1 – Classes and Top-down Design Overview Software development projects using the object-oriented approach involve breaking the problem down into multiple classes that can be tied together into a single solution. In this project, you are given the task of writing some classes that would work together for providing a solution to a problem involving some basic computations. Learning Objectives The focus of this assignment is on the following learning objectives: • Be able to identify the contents of...

  • Exercise 4. Computing and displaying the Fourier Transform of a signal Later in the semester it will become useful to d...

    Exercise 4. Computing and displaying the Fourier Transform of a signal Later in the semester it will become useful to determine the frequency response of a signal or system by taking the Fourier Transform empirically (rather than computing it analytically). To do so we make use of the fft and fftshift commands. The fft command is an efficient implementation of the Discrete Fourier Transform (DFT) known as the Fast Fourier Transform (FFT). When the FFT is computed the samples are...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT