1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Brut [27]
3 years ago
14

Use Routh's stability criterion to determine how many roots with positive real parts the following equations have:

Engineering
1 answer:
Pavlova-9 [17]3 years ago
3 0

Answer:

a) no roots not in LHP

b) 2 roots not in LHP

c) 2 roots not in the LHP

d) 2 roots not in the LHP

e) 2 roots not in LHP

Explanation:

a) s^4 + 8s^3 + 32s^2 + 80s + 100 = 0\\\\s^4:\:\:\:1\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:32\:\:\:\:\:\:100\\s^3:\:\:\:8\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:80\\s^2:\:\:\:22\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:100\\s^1:\:\:\:80-\frac{800}{22} =43.6\\s^0:\:\:\:100

No roots not in the LHP

b) s^5 + 10s^4 + 30s^3 + 80s^2+344s + 480 =0 \\\\s^5:\:\:\:1\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:30\:\:\:\:\:\:344\\s^4:\:\:\:10\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:80\:\:\:\:\:\:480\\s^3:\:\:\:22\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:296\\s^2:\:\:\:-545\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:480\\s^1:\:\:\:490\\s^0:\:\:\:480

2 roots not in the LHP

c) s^4 + 2s^3 + 7s^2 -2s + 8 = 0 \\\\s^4:\:\:\:1\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:7\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:8\\s^3:\:\:\:2\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:-2\\s^2:\:\:\:8\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:8\\s^1:\:\:\:-4\\s^0:\:\:\:8

There are roots in the RHP (not all coefficients are greater than 0).

2 roots not in the LHP

d) s^4 + 2s^3 + 7s^2 -2s + 8 = 0 \\\\s^3:\:\:\:1\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:20\\s^2:\:\:\:1\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:78\\s^1:\:\:\:-58\\s^0:\:\:\:78

There are two sign changes in the first column of the Routh array.

2 roots not in the LHP

e) s^4 + 2s^3 + 7s^2 -2s + 8 = 0 \\\\s^4:\:\:\:1\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:6\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:25\\s^3:\:\:\:4\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:12\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\: new \:\:row \\s^2:\:\:\:3\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:\:25\\s^1:\:\:\:12-\frac{100}{3}=-21.3 \\s^0:\:\:\:25

2 roots not in LHP

check:

 a (s) = 0  ⇒

 s^2 = -3 \limits^+_- 4j = 5e^{j(\pi \limits^+_- 0.92)}\\\\s = \sqrt5 e^{j( \frac{\pi}{2} \limits^+_-  0.46)+n\pi j},\:\:\:\:\: n= 0, 1\\

You might be interested in
There are 22 people in the classroom 12 are we
Leni [432]
22 because all should wear safety glasses to be protected
6 0
3 years ago
Read 2 more answers
Please add comments to your program to explain it. Thank you!
Step2247 [10]

Answer / Explanation:

(1) We should first understand that the input filename are passed in as the first command arguments at command line, respectively.

To do this, we import the data file:

So we have,

import java.io.*;

/**

*  Makes a copy of a file.  The original file and the name of the

*  copy must be given as command-line arguments.  In addition, the

*  first command-line argument can be "-f"; if present, the program

*  will overwrite an existing file; if not, the program will report

*  an error and end if the output file already exists.  The number

*  of bytes that are copied is reported.

*/

public class CopyFile {

  public static void main(String[] args) {

     String sourceName;   // Name of the source file,  

                          //    as specified on the command line.

     String copyName;     // Name of the copy,  

                          //    as specified on the command line.

     InputStream source;  // Stream for reading from the source file.

     OutputStream copy;   // Stream for writing the copy.

     boolean force;  // This is set to true if the "-f" option

                     //    is specified on the command line.

     int byteCount;  // Number of bytes copied from the source file.

     

     /* Get file names from the command line and check for the  

        presence of the -f option.

(2)   If the command line is not one

        of the two possible legal forms, print an error message and  

        end this program. */

   

     if (args.length == 3 && args[0].equalsIgnoreCase("-f")) {

        sourceName = args[1];

        copyName = args[2];

        force = true;

     }

     else if (args.length == 2) {

        sourceName = args[0];

        copyName = args[1];

        force = false;

     }

     else {

        System.out.println(

                "Usage:  java CopyFile <source-file> <copy-name>");

        System.out.println(

                "    or  java CopyFile -f <source-file> <copy-name>");

        return;

     }

     

     /* Create the input stream.  If an error occurs, end the program. */

     

     try {

        source = new FileInputStream(sourceName);

     }

     catch (FileNotFoundException e) {

        System.out.println("Can't find file \"" + sourceName + "\".");

        return;

     }    

     /* If the output file already exists and the -f option was not

        specified, print an error message and end the program. */

   

     File file = new File(copyName);

     if (file.exists() && force == false) {

         System.out.println(

              "Output file exists.  Use the -f option to replace it.");

         return;  

    }      

     /* Create the output stream.  If an error occurs, end the program. */

     try {

        copy = new FileOutputStream(copyName);

     }

     catch (IOException e) {

        System.out.println("Can't open output file \"" + copyName + "\".");

        return;

     }

     

   (3)   /* Copy one byte at a time from the input stream to the output

        stream, ending when the read() method returns -1 (which is  

        the signal that the end of the stream has been reached).  If any  

        error occurs, print an error message.  Also print a message if  

        the file has been copied successfully.  */  

     byteCount = 0;

     

     try {

        while (true) {

           int data = source.read();

           if (data < 0)

              break;

           copy.write(data);

           byteCount++;

        }

        source.close();

        copy.close();

        System.out.println("Successfully copied " + byteCount + " bytes.");

     }

     catch (Exception e) {

        System.out.println("Error occurred while copying.  "

                                  + byteCount + " bytes copied.");

        System.out.println("Error: " + e);

     }    

  }  // end main()  

} // end class CopyFile

8 0
4 years ago
You wish to design a cantilever beam with a square cross section and length L that can support an end load of F without yielding
koban [17]

Answer:

with a square cross section and length L that can support an end load of F without yielding. You also wish to minimize the amount the beam deflects under load. What is the free variable(s) (other than the material) for this design problem?

a. End load, F.

b. Length, L.

c. Beam thickness, b

d. Deflection, δ

e. Answers b and c.

f. All of the above.

8 0
3 years ago
I want a problems and there solutions of The inception of cavitation?​
Ugo [173]

Answer:

The overview of the given scenario is explained in explanation segment below.

Explanation:

  • The inception of cavitation, that further sets the restriction for high-pressure and high-free operation, has always been the matter of substantial experimental study over the last few generations.
  • Cavitation inception would be expected to vary on the segment where the local "PL" pressure mostly on segment keeps falling to that are below the "Pv" vapor pressure of the fluid and therefore could be anticipated from either the apportionment of the pressure.

    ⇒  A cavitation number is denoted by "σ" .

4 0
3 years ago
Select the correct answer. Ruby wants to create a cube puzzle game. For that she has to create a cube. Which drafting tool do yo
Alexxx [7]

Answer:

D. a triangle and a T-Square

Explanation:

A T-Square is the best drawing tool to create squares. You would need a squares to create cubes.

3 0
3 years ago
Other questions:
  • The primary heat transfer mechanism that warms me while I stand next to a campfire is: a)- Conduction b)- Impeadance c)- Convect
    7·2 answers
  • Examining the qualifications of the<br> is one criterion for evaluating information sources.
    9·1 answer
  • 1. Think about what you’ve learned about BJTs, both from lecture and from lab. What aspects of the transfer functions of the CE
    12·1 answer
  • Determine whether the following changes cause short-run aggregate supply curve to shift to the right, shift to the left, or rema
    9·1 answer
  • What is the multiplicity of the root x = -4?
    14·1 answer
  • Which of these physical concepts is most important in civil engineering?
    14·1 answer
  • two cars travel on a straight road from the point. A to point B both cars accelerate to their maximum speed and then continue at
    10·1 answer
  • Some wire of radius is 1.262mm has a resistance of 20Ω. Determine the resistance of a wire of the same length and material if th
    14·2 answers
  • A. 50
    6·1 answer
  • Based on the pattern, what are the next two terms of the sequence? 9,94,916,964,9256,... A. 91024,94096 B. 9260,91028 C. 9260,92
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!