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
lesantik [10]
2 years ago
6

In order to lift a lighter object on the other side, a boy placed 155 N of

Engineering
1 answer:
const2013 [10]2 years ago
4 0

Answer:

0.58 m

Explanation:

In order to find the vertical distance the load lifts, we first need to find the magnitude of the resistance force. So, Rd = Fd' where R = resistance force = ?, d = resistance distance = 3.5 m, F = effort force = 155 N and d' = effort distance = 1.5 m.

So R = Fd'/d = 155 N × 1.5 m/3.5 m = 232.5 Nm/3.5 m = 66.43 N  

Now, the vertical work done by the effort = vertical work done by load

Fy = Ry' where y = vertical distance moved by effort = 0.25 m and y' = vertical distance moved by resistance force

So, Fy = Ry'

y' = Fy/R

= 155 N 0.25 m/66.43 N

= 38.75 Nm/66.43 N

= 0.58 m

So, the vertical distance the lighter object moves is y' = 0.58 m

You might be interested in
What are the important factors needed to be considered while selecting a brake or clutch?
AysviL [449]

Answer:

The correct answer is: the following factors are needed to properly consider while selecting a brake or clutch:

-Engagement

-Friction

-Electromagnetic

-Mechanical

-Actuation

-Electric

-Fluid power

-Self-actuation

-Key concepts

-Application notes

-Selection criteria

Explanation:

Clutches and brakes are important devices in many rotating drive systems, it is very important to guarantee the security and the proper function of them accomplishing a high quality parameters in those factors.

4 0
3 years ago
Ordan has _ 5 8 can of green paint and _ 3 6 can of blue paint. If the cans are the same size, does Jordan have more green paint
Morgarella [4.7K]

Answer:

Jordan has more green paints

Explanation:

Given

Green = \frac{5}{8}

Blue = \frac{3}{6}

Required

Which paint does he have more?

For better understanding, it's better to convert both measurements to decimal.

For the green paint:

Green = \frac{5}{8}

Green = 0.625

For the blue paint:

Blue = \frac{3}{6}

Blue = 0.5

By comparison:

0.625 > 0.5

<em>This means that Jordan has more green paints</em>

3 0
3 years ago
g An analog voice signal, sampled at the rate of 8 kHz (8000 samples/second), is to be transmitted by using binary frequency shi
slamgirl [31]

Answer:

The module is why it’s goin to work

Explanation:

4 0
2 years ago
Explain the process of energy conversion by describing how energy was converted from the windmill design brief. Discuss the diff
cupoosta [38]

Answer:

Wind energy is converted to Mechanical energy  which is then converted in to  electrical energy

Explanation:

In a wind mill the following energy conversions take place

a) Wind energy is converted into Mechanical energy (rotation of rotor blades)

b) Mechanical energy is converted into electrical energy (by using electric motor)

This electrical energy is then used for transmission through electric lines.

6 0
2 years ago
C++ - Green Crud Fibonacci programThe following program is to be written with a loop. You are to write this program three times
Fynjy0 [20]

Answer:

Below is the required code:

Explanation:

Using for loop

#include <iostream>

using namespace std;

int main()

{

    //Initial crud size

    int init = 0;

    int newCrud;

    int next=0;

    //Number of days to simulate

    int no_days;

    int day;

    cout << "Enter initial amount of green crud: ";

    cin >> newCrud;

    cout << "Enter number of days to simulate: ";

    cin >> no_days;

    for (day = 10; day<=no_days; day++)

    {

         if (day % 10 == 0)

         {

             next = newCrud + init;

         }

             newCrud = init;

             init = next;

    }

    if (no_days < 5)

    cout << "\nCrud reproduce only after 5 days minimum.Hence the current amount is "

    << newCrud << " pounds.";

    else

    cout << "On day " << no_days << " you have " << init

    << " pounds of green crud." << endl;

    cout << "\nWould you like to continue? (y or n): ";

    cin >> ans;

         return 0;

}

Output:

         Enter initial amount of green crud: 5

         Enter number of days to simulate: 220

    On day 220 you have 10485760 pounds of green crud.

Using while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans='y';

    while (ans == 'Y' || ans == 'y')

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud:

         ";

         cin >> newCrud;

         cout << "Enter number of days to simulate:

         ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         cout << "On day " << no_days << " you have "

         << init

         << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or

         n): ";

         cin >> ans;

    }

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

Using do while loop

Program:

#include <iostream>

using namespace std;

int main()

{

    char ans;

    do

    {

         //Initial crud size

         int init = 0;

         int newCrud;

         int next=0;

         //Number of days to simulate

         int no_days;

         int day;

         cout << "Enter initial amount of green crud: ";

         cin >> newCrud;

         cout << "Enter number of days to simulate: ";

         cin >> no_days;

         for (day = 10; day<=no_days; day++)

         {

             if (day % 10 == 0)

             {

                  next = newCrud + init;

             }

                  newCrud = init;

                  init = next;

         }

         if (no_days < 5)

         cout << "\nCrud reproduce only after 5 days

         minimum.Hence the current amount is "

         << newCrud << " pounds.";

         else

         

         cout << "On day " << no_days << " you have " <<

         init << " pounds of green crud." << endl;

         cout << "\nWould you like to continue? (y or n):

         ";

         cin >> ans;

    } while (ans == 'Y' || ans == 'y');

    return 0;

}

Output:

Enter initial amount of green crud: 5

Enter number of days to simulate: 220

On day 220 you have 10485760 pounds of green crud.

Would you like to continue? (y or n): y

Enter initial amount of green crud: 5

Enter number of days to simulate: 225

On day 225 you have 10485760 pounds of green crud.

7 0
3 years ago
Other questions:
  • A rigid tank with a volume of 4 m^3 contains argon at 500 kPa and 30 deg C. It is connected to a piston cylinder (initially empt
    14·1 answer
  • Air is compressed in the compressor of a turbojet engine. Air enters the compressor at 270 K and 58 kPa and exits the compressor
    13·1 answer
  • Please answer the following questions.
    9·2 answers
  • Se requiere un permiso aprobación o restricción contaminante para todos los métodos comerciales de descarga de aguas residuales
    13·1 answer
  • What is the difference between CNC and NC​
    15·1 answer
  • A Toyota Camry of mass 1650 kg turns from Chaplin Road to Route 79, thereby accelerating from 35 MPH in the city till 70 MPH on
    6·1 answer
  • The European Space Agency launched a probe called Rosetta in March 2004. In August​ 2014, Rosetta reached its​ destination: a co
    13·1 answer
  • Sam promises to pay Sandy $2,000 in four years and another $3,000 four years later for a loan of $2,000 from Sandy today. What i
    8·1 answer
  • How much memory can a 32 -bit processor support ?
    13·1 answer
  • The driver should be able to see the ground within _____ to the front?
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!