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
MrMuchimi
2 years ago
12

The force on a cutting tool are 2600N vertically downward and 2100 horizontal. Determine the resultant force acting on the tool

and the angle at which it acts.​
Engineering
1 answer:
kolezko [41]2 years ago
3 0

Answer & Explanation:

"The force <em>on a cutting tool</em> are 2600N vertically downward" sounds a little unusual, since most of the time, the tool is above the object to be cut in such a way that the force acting "ON the tool" is upwards.  We will accept the statement as it is (downwards).

Since the two forces are acting at right angles to each other, the resultant can be found using Pythagoras theorem, namely

resultant = sqrt(2600^2+2100^2) = 3342 N (approx.)

The angle can be found using the arcTangent function, or

angle = arcTangent(2600/2100) = 51.07 degrees below the horizontal, since the 2600 N force is acting downwards.

You might be interested in
Ext
Galina-37 [17]
Engineering is the technical
8 0
2 years ago
The accompanying specific gravity values describe various wood types used in construction. 0.320.350.360.360.370.380.400.400.40
marysya [2.9K]

Answer:

\begin{array}{ccc}{Steam} & {\vert} & {Leaf}  \ \\ \\ {0.3} & {\vert} & {2\ 5\ 6\ 6\ 7\ 8} \ \\ \\{0.4} & {\vert} & {0\ 0\ 0\ 1\ 1\ 2\ 2\ 2\ 2\ 2\ 3\ 4\ 5\ 6\ 6\ 7\ 8\ 8\ 9} \ \\ \ \\ {0.5} & {\vert} & {1\ 4\ 4\ 5\ 8} \ \\ \ \\ {0.6} & {\vert} & {3\ 6\ 6\ 7\ 8} \ \\  \ \\ {0.7} & {\vert} & {8} \ \ \end{array}

Explanation:

Given

0.32,\ 0.35,\ 0.36,\ 0.36,\ 0.37,\ 0.38,\ 0.40,\ 0.40,\ 0.40,\ 0.41,

0.41,\ 0.42,\ 0.42,\ 0.42,\ 0.42,\ 0.42,\ 0.43,\ 0.44,\ 0.45,\ 0.46,

0.46,\ 0.47,\ 0.48,\ 0.48,\ 0.49,\ 0.51,\ 0.54,\ 0.54,\ 0.55,

0.58,\ 0.63,\ 0.66,\ 0.66,\ 0.67,\ 0.68,\ 0.78.

Required

Plot a steam and leaf display for the given data

Start by categorizing the data by their tenth values:

0.32,\ 0.35,\ 0.36,\ 0.36,\ 0.37,\ 0.38.

0.40,\ 0.40,\ 0.40,\ 0.41,\ 0.41,\ 0.42,\ 0.42,\ 0.42,\ 0.42,\ 0.42,

0.43,\ 0.44,\ 0.45,\ 0.46,\ 0.46,\ 0.47,\ 0.48,\ 0.48,\ 0.49.

0.51,\ 0.54,\ 0.54,\ 0.55,\ 0.58.

0.63,\ 0.66,\ 0.66,\ 0.67,\ 0.68.

0.78.

The 0.3's is will be plotted as thus:

\begin{array}{ccc}{Steam} & {\vert} & {Leaf}  \ \\ {0.3} & {\vert} & {2\ 5\ 6\ 6\ 7\ 8} \ \ \end{array}

The 0.4's is as follows:

\begin{array}{ccc}{Steam} & {\vert} & {Leaf}  \ \\ {0.4} & {\vert} & {0\ 0\ 0\ 1\ 1\ 2\ 2\ 2\ 2\ 2\ 3\ 4\ 5\ 6\ 6\ 7\ 8\ 8\ 9} \ \ \end{array}

The 0.5's is as follows:

\begin{array}{ccc}{Steam} & {\vert} & {Leaf}  \ \\ {0.5} & {\vert} & {1\ 4\ 4\ 5\ 8} \ \ \end{array}

The 0.6's is as thus:

\begin{array}{ccc}{Steam} & {\vert} & {Leaf}  \ \\ {0.6} & {\vert} & {3\ 6\ 6\ 7\ 8} \ \ \end{array}

Lastly, the 0.7's is as thus:

\begin{array}{ccc}{Steam} & {\vert} & {Leaf}  \ \\ {0.7} & {\vert} & {8} \ \ \end{array}

The combined steam and leaf plot is:

\begin{array}{ccc}{Steam} & {\vert} & {Leaf}  \ \\ \\ {0.3} & {\vert} & {2\ 5\ 6\ 6\ 7\ 8} \ \\ \\{0.4} & {\vert} & {0\ 0\ 0\ 1\ 1\ 2\ 2\ 2\ 2\ 2\ 3\ 4\ 5\ 6\ 6\ 7\ 8\ 8\ 9} \ \\ \ \\ {0.5} & {\vert} & {1\ 4\ 4\ 5\ 8} \ \\ \ \\ {0.6} & {\vert} & {3\ 6\ 6\ 7\ 8} \ \\  \ \\ {0.7} & {\vert} & {8} \ \ \end{array}

8 0
2 years ago
Code scramble: make the program sort the three numbers x, y and z into increasing order, so that x has the smallest value, y has
riadik2000 [5.3K]

Answer:

This question is taken from code scramble exercise which has scattered lines which are to be arranged by dragging and dropping with mouse to  to get the desired output in which x has the smallest value, y has the next smallest value, and z has the largest value. So the correct arrangement is as following:

tmp=max(x,y)  

x=min(x,y)  

y=tmp  

tmp=max(y,z)  

y=min(y,z)

z=tmp  

tmp=max(x,y)  

x=min(x,y)  

y=tmp

Explanation:

So the flow works as following:

First the maximum of x and y is taken and the result is stored in a temporary variable tmp which is used so that the original values do not get affected or modified by the operations performed by the functions. Lets say that x=30 y=15 and z=40

Now the max() functions returns the maximum from the values of x and y. As x=30 and y=15 so value of x is stored in tmp which is 30 as 30>15

Next the min() function finds the minimum from the values of x and y and stores the result in x. As the minimum value is 15 so this value is stored in x and now x=15

y = tmp means now the value in tmp is copied to y, So y = 30

Next the max() function finds the maximum value from the values of y and z. As y=30 and z=40 So the maximum value is 40 so tmp variable now contains the value 40.

Next the min() function finds the minimum from the values of y and z and stores the result in y. As the minimum value is 30 so this value is stored in y which means y remains 30 so, y=30

z = tmp means now the value in tmp is copied to z, So z= 40

Now the max() functions returns the maximum from the values of x and y. After the operations of above functions the new value of x and y are: x=15 and y=30 so value of y is stored in tmp which is 30 as 30>15

Next the min() function finds the minimum from the values of x and y and stores the result in x. As the minimum value is 15 so this value is stored in x and x remains: x=15

y = tmp means now the value in tmp is copied to y, So y remains: y = 30

So the final values of x, y and z are:

x = 15 y = 30 z = 40

If you want to make a program which sort the values in x, y and z then i am providing a simple Python program that serves the purpose:

x = int(input("enter first number: "))

y = int(input("enter second number: "))

z = int(input("enter third number: "))

a1 = min(x, y, z)

a3 = max(x, y, z)

a2 = (x + y + z) - a1 - a3

print("x =",a1,"y=",a2,"z=",a3)

The program asks user to enter the value for x, y and z.

Then the minimum value from the values of x,y and z is computed using min() function and the result is stored in a1. This will be the value of x. Then the maximum value from value of x,y and z is computed using max() function and the result is stored in a2. This will be the value of z. Next the statement: a2 = (x + y + z) - a1 - a3  works as following:

Lets say the values of x = 30 y = 15 and z = 40 So a1 = 15 and a2 = 40

a2 = 30 + 15 + 40 - 15 - 40

a2 = 30

This is the value of y

So  print("x = ",a1,"y = ",a2,"z = ",a3) displays the following output:

x = 15 y = 30 z = 40

3 0
3 years ago
What is a common tool used to gain mechanical advantage while hoisting.
erastovalidia [21]

Answer:

pulleys

Explanation:

7 0
3 years ago
what architecture term refers to a molding double curvature that is concave at one end and convex at the other
Molodets [167]

Answer:

An architecture term refers to a molding double curvature that is concave at one end and convex at the other is explained below in details.

Explanation:

Moldings, also recognized as covings, are beautifying strips applied to cover transformations between exteriors in aesthetically delightful ways. Congé: A concave molding. ... Cyma: Sometimes described a wave molding, this is a double curvature that is applied as the culminating component in a cornice.

5 0
3 years ago
Other questions:
  • A First Stage in a turbine receives steam at 10 MPa, 800 C with an exit pressure of 800 KPa. Assume the stage is adiabatic and r
    5·1 answer
  • If two statements are inconsistent with each other, at least one of them must be false. a)-True b)-False
    9·1 answer
  • A MOSFET differs from a JFET mainly because
    13·1 answer
  • Yooo. does anyone have tin foil and tape mask that they can take a picture of and send it ?
    5·1 answer
  • A person holds her hand out of an open car window while the car drives through still air at 65 mph. Under standard atmospheric c
    8·1 answer
  • Engineering practices include which of the following? Select all that apply.
    10·1 answer
  • What are the main causes of injuries when using forklifts?
    5·1 answer
  • EverFi future smart pie chart
    11·1 answer
  • Which type of elevated stand does not need a tree?
    13·1 answer
  • Draw the schematics for the following two battery connections. Can you explain the value of the output voltage in the series con
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!