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
Westkost [7]
4 years ago
15

Consider a solid circular shaft subjected to bending and torsion so that the state of stress of interest involves only a normal

stress and a shear stress, with all other stress components being zero.
(a) Determine the safety factor against yielding as a function of the yield strength of the ductile material and the applied stresses.
(b) Use the results of (a) to develop a design equation for the shaft giving diameter d as a function of yield strength, safety factor, bending moment M, and torque T.

Engineering
1 answer:
Alex17521 [72]4 years ago
7 0

Answer:

The detailed explanation of answer is given in attached file.

Explanation:

You might be interested in
Help now please evaluate using the commutative property: 40 (32) (10) (25)
Ilia_Sergeevich [38]

Answer:

#See solution for details.

Explanation:

#The commutative property of multiplication tells us that it doesn't matter in what order you multiply numbers. The formula for this property is a * b = b * a:

40\times32\times10\times 25=320,000\\\\25\times10\times32\times 40=320,000\\\\10\times32\times25\times 40=320,000\\\\32\times25\times40\times 10=320,000

Hence, the product of the four numbers remains 320,000 irrespective of their order.

4 0
3 years ago
What is the resistance of a resistor if the current flowing through it is 3mA and the voltage across it is 5.3V?
Flura [38]

Answer: 1766.667 Ω = 1.767kΩ

Explanation:

V=iR

where V is voltage in Volts (V), i is current in Amps (A), and R is resistance in Ohms(Ω).

3mA = 0.003 A

Rearranging the equation, we get

R=V/i

Now we are solving for resistance. Plug in 0.003 A and 5.3 V.

R = 5.3 / 0.003

= 1766.6667 Ω

= 1.7666667 kΩ

The 6s are repeating so round off to whichever value you need for exactness.

6 0
1 year ago
Which of these is the coarsest grit abrasive that may be used on aluminum?
natali 33 [55]

Answer:

80grit

Explanation:

80 grit is coarsest grit that may be used on aluminum

The lowest grit sizes range from 40 to 60. From the given options 80 grit is practically available grit.

What is a sandpaper used for?

They are essentially used for surface preparation. Sandpaper is produced in a range of grit sizes and is used to remove material from surfaces, either to make them smoother (for example, in painting and wood finishing), to remove a layer of material (such as old paint), or sometimes to make the surface rougher (for example, as a preparation for gluing).

5 0
3 years ago
Read 2 more answers
It is said that Archimedes discovered his principle during a bath while thinking about how he could determine if King Hiero’s cr
arlik [135]

Answer: The crown is not made of pure gold.

Explanation:

Archimedes discovered that any solid, of any shape, when submerged in a liquid receives an upward force, equal to the weight of the volume of the liquid removed by the solid, which is equal to the solid volume.

So, if any body is weighed in air, the normal force will be equal to the gravity force (which we call weight) which can be expressed as follows:

Fg = m g = δ V g = 34.7 N

When submerged in water, the normal force is equal to the difference between the actual weight, and the upward force due to Archimedes' principle, called buoyant force, as follows:

Fn = Fg - Ep = δx. V. g - δH20 . V. g = 31.5 N

Dividing Fg between Fn, and simplifying common terms, we have:

δx / (δx - δh20) = 34.7 / 31.5 = 1.10

Solving for δx, we get the following value:

δx = 11,000 Kg/m3, less dense than pure gold, so we can conclude that the crown was not made of pure gold.

3 0
3 years ago
Write a GUI-based program that plays a guess-the-number game in which the roles of the computer and the user are the reverse of
AURORKA [14]

Answer:

import javax.swing.*;

import java.awt.*;

import java.util.Random;

import java.awt.event.*;

public class Guess extends JFrame

{

   private static final long serialVersionUID = 1L;

   private JButton newGame;

   private JButton enter;

   private JButton exit;

   private JTextField guess;

   private JLabel initialTextLabel;

   private JLabel enterLabel;

   private JLabel userMessageLabel;

   private int randNum;

   private int userInput;

   private int maxtries = 0;

   public Guess()

   {

       super("Guessing Game");

       newGame = new JButton("New Game");

       exit = new JButton("Exit Game");

       enter = new JButton("Enter");

       guess = new JTextField(4);

       initialTextLabel = new JLabel("I'm thinking of a number between 1 and 100. Guess it!");

       enterLabel = new JLabel("Enter your guess.");

       userMessageLabel = new JLabel("");

       randNum = new Random().nextInt(100) + 1;

       setLayout(new FlowLayout());

       add(initialTextLabel);

       add(enterLabel);

       add(guess);

       add(newGame);

       add(enter);

       add(exit);

       add(userMessageLabel);

   

       setSize(500, 300);

       addWindowListener(new WindowAdapter()

       {

           public void windowClosing(WindowEvent e)

           {

               System.exit(0);

           }

       });

       newGameButtonHandler nghandler = new newGameButtonHandler();

       newGame.addActionListener(nghandler);

       ExitButtonHandler exithandler = new ExitButtonHandler();

       exit.addActionListener(exithandler);

       enterButtonHandler enterhandler = new enterButtonHandler();

       enter.addActionListener(enterhandler);

   }

   class newGameButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           setBackground(Color.ORANGE);

           guess.setEnabled(true);

           guess.setText("");

           enter.setEnabled(true);

           maxtries = 0;

           userMessageLabel.setText("");

           randNum = new Random().nextInt(100) + 1;

       }

   }

   class ExitButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           System.exit(0);

       }

   }

   class enterButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           userInput = Integer.parseInt(guess.getText());

           checkGuess(randNum);

      if(userInput > 100 )

          {

                               userMessageLabel.setText("invalid entry");

          }

       }

   }

   public void checkGuess(int randomNumber)

   {

       maxtries++;

     if(maxtries==10){

           userMessageLabel.setText("You Lose!!");

           guess.setEnabled(false);

           enter.setEnabled(false);

         

       }else if (userInput == randomNumber)

           {

               userMessageLabel.setText("Correct !");

           }

       else if (userInput > randomNumber)

           {

               userMessageLabel.setText("Too high");

           }

       else if (userInput < randomNumber)

           {

               userMessageLabel.setText("Too Low");

           }

   }

   public static void main(String[] args)

   {

       Guess game = new Guess();

       game.setVisible(true);

   }

}

8 0
3 years ago
Other questions:
  • Air enters a horizontal, constant-diameter heating duct operating at steady state at 290 K, 1 bar, with a volumetric flow rate o
    15·2 answers
  • Make a proposal to add a small pizza shop to a historical part of town. How could it be designed to “fit” into the area?
    7·2 answers
  • Air is contained in a vertical piston–cylinder assembly such that the piston is in static equilibrium. The atmosphere exerts a p
    9·1 answer
  • A series R-L circuit is given. Circuit is connected to an AC voltage generator. a) Derive equations for magnitude and phase of c
    13·1 answer
  • Define ""acidity"" of an aqueous solution. How do you compare the strength of acidity of solutions ?
    6·1 answer
  • Compute the number of kilo- grams of hydrogen that pass per hour through a 6-mm-thick sheet of palladium having an area of 0.25
    12·1 answer
  • What is the federal E-Rate program?
    11·1 answer
  • (TCO 1) Name one disadvantage of fixed-configuration switches over modular switches. a. Ease of management b. Port security b. F
    6·1 answer
  • A structural component in the shape of a flat plate 29.6 mm thick is to be fabricated from a metal alloy for which the yield str
    11·1 answer
  • 9
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!