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
Crazy boy [7]
3 years ago
8

Find the mass if the force is 18 N and the acceleration is 2 m/s2

Engineering
2 answers:
Nana76 [90]3 years ago
5 0

Explanation:

f = ma

m = f/a

= 18N / 2m/s2

= 9kg

Rzqust [24]3 years ago
5 0

Answer:

9kg

Explanation:

Step one: write the formula of Force

F= M× A

F- Force

M- Mass - Kg

A- Acceleration - m/s²

Step two: Use the formula

F= M× A

M = F/ A

F= 18N, A= 2m/s²

M= 18N / 2m/s² = 9 kg

You might be interested in
More discussion about seriesConnect(Ohm) function In your main(), first, construct the first circuit object, called ckt1, using
STALIN [3.7K]

Answer:

resistor.h

//circuit class template

#ifndef TEST_H

#define TEST_H

#include<iostream>

#include<string>

#include<vector>

#include<cstdlib>

#include<ctime>

#include<cmath>

using namespace std;

//Node for a resistor

struct node {

  string name;

  double resistance;

  double voltage_across;

  double power_across;

};

//Create a class Ohms

class Ohms {

//Attributes of class

private:

  vector<node> resistors;

  double voltage;

  double current;

//Member functions

public:

  //Default constructor

  Ohms();

  //Parameterized constructor

  Ohms(double);

  //Mutator for volatage

  void setVoltage(double);

  //Set a resistance

  bool setOneResistance(string, double);

  //Accessor for voltage

  double getVoltage();

  //Accessor for current

  double getCurrent();

  //Accessor for a resistor

  vector<node> getNode();

  //Sum of resistance

  double sumResist();

  //Calculate current

  bool calcCurrent();

  //Calculate voltage across

  bool calcVoltageAcross();

  //Calculate power across

  bool calcPowerAcross();

  //Calculate total power

  double calcTotalPower();

  //Display total

  void displayTotal();

  //Series connect check

  bool seriesConnect(Ohms);

  //Series connect check

  bool seriesConnect(vector<Ohms>&);

  //Overload operator

  bool operator<(Ohms);

};

#endif // !TEST_H

resistor.cpp

//Implementation of resistor.h

#include "resistor.h"

//Default constructor,set voltage 0

Ohms::Ohms() {

  voltage = 0;

}

//Parameterized constructor, set voltage as passed voltage

Ohms::Ohms(double volt) {

  voltage = volt;

}

//Mutator for volatage,set voltage as passed voltage

void Ohms::setVoltage(double volt) {

  voltage = volt;

}

//Set a resistance

bool Ohms::setOneResistance(string name, double resistance) {

  if (resistance <= 0){

      return false;

  }

  node n;

  n.name = name;

  n.resistance = resistance;

  resistors.push_back(n);

  return true;

}

//Accessor for voltage

double Ohms::getVoltage() {

  return voltage;

}

//Accessor for current

double Ohms::getCurrent() {

  return current;

}

//Accessor for a resistor

vector<node> Ohms::getNode() {

  return resistors;

}

//Sum of resistance

double Ohms::sumResist() {

  double total = 0;

  for (int i = 0; i < resistors.size(); i++) {

      total += resistors[i].resistance;

  }

  return total;

}

//Calculate current

bool Ohms::calcCurrent() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  current = voltage / sumResist();

  return true;

}

//Calculate voltage across

bool Ohms::calcVoltageAcross() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  double voltAcross = 0;

  for (int i = 0; i < resistors.size(); i++) {

      voltAcross += resistors[i].voltage_across;

  }

  return true;

}

//Calculate power across

bool Ohms::calcPowerAcross() {

  if (voltage <= 0 || resistors.size() == 0) {

      return false;

  }

  double powerAcross = 0;

  for (int i = 0; i < resistors.size(); i++) {

      powerAcross += resistors[i].power_across;

  }

  return true;

}

//Calculate total power

double Ohms::calcTotalPower() {

  calcCurrent();

  return voltage * current;

}

//Display total

void Ohms::displayTotal() {

  for (int i = 0; i < resistors.size(); i++) {

      cout << "ResistorName: " << resistors[i].name << ", Resistance: " << resistors[i].resistance

          << ", Voltage_Across: " << resistors[i].voltage_across << ", Power_Across: " << resistors[i].power_across << endl;

  }

}

//Series connect check

bool Ohms::seriesConnect(Ohms ohms) {

  if (ohms.getNode().size() == 0) {

      return false;

  }

  vector<node> temp = ohms.getNode();

  for (int i = 0; i < temp.size(); i++) {

      this->resistors.push_back(temp[i]);

  }

  return true;

}

//Series connect check

bool Ohms::seriesConnect(vector<Ohms>&ohms) {

  if (ohms.size() == 0) {

      return false;

  }

  for (int i = 0; i < ohms.size(); i++) {

      this->seriesConnect(ohms[i]);

  }

  return true;

}

//Overload operator

bool Ohms::operator<(Ohms ohms) {

  if (ohms.getNode().size() == 0) {

      return false;

  }

  if (this->sumResist() < ohms.sumResist()) {

      return true;

  }

  return false;

}

main.cpp

#include "resistor.h"

int main()

{

   //Set circuit voltage

  Ohms ckt1(100);

  //Loop to set resistors in circuit

  int i = 0;

  string name;

  double resistance;

  while (i < 3) {

      cout << "Enter resistor name: ";

      cin >> name;

      cout << "Enter resistance of circuit: ";

      cin >> resistance;

      //Set one resistance

      ckt1.setOneResistance(name, resistance);

      cin.ignore();

      i++;

  }

  //calculate totalpower and power consumption

  cout << "Total power consumption = " << ckt1.calcTotalPower() << endl;

  return 0;

}

Output

Enter resistor name: R1

Enter resistance of circuit: 2.5

Enter resistor name: R2

Enter resistance of circuit: 1.6

Enter resistor name: R3

Enter resistance of circuit: 1.2

Total power consumption = 1886.79

Explanation:

Note

Please add all member function details.Its difficult to figure out what each function meant to be.

8 0
3 years ago
The cars of a roller-coaster ride have a speed of 19.0 km/h as they pass over the top of the circular track. Neglect any frictio
Dmitrij [34]

Complete Question

The cars of a roller-coaster ride have a speed of 19.0 km/h as they pass over the top of the circular track. Neglect any friction and calculate their speed v when they reach the horizontal bottom position. At the top position, the radius of the circular path of their mass centers is 21 m, and all six cars have the same mass.V = -18 m What is v?X km/h

Answer:

v=23.6m/s

Explanation:

Velocity v_c=18.0km/h

Radius r=21m

initial velocity uu=19=>5.27778

Generally the equation for Angle is mathematically given by

\theta=\frac{v_c}{2r}

\theta=\frac{18}{2*21}

\theta=0.45

\theta=25.7831 \textdegree

Generally

Height of mass

h=\frac{rsin\theta}{\theta}

h=\frac{21sin25.78}{0.45}

h=20.3m

Generally the equation for Work Energy is mathematically given by

0.5mv_0^2+mgh=0.5mv^2

Therefore

v=\sqrt{u^2+2gh}

v=\sqrt{=5.27778^2+2*9.81*20.3}

v=23.6m/s

3 0
3 years ago
What is reciprocity?
Murrr4er [49]

Answer:

the practice of exchanging things with others for mutual benefit, especially privileges granted by one country or organization to another.

HOPE THIS HELPED!!!!!!!!!!!!! XDDDDDD

7 0
4 years ago
Read 2 more answers
Some aircraft component is fabricated from an aluminum alloy that has a plane strain fracture toughness of 35 MPa m . It has bee
GaryK [48]

Answer:  Fracture will not occur since Kc (32.2 MPa√m) ∠ KIc (35  MPa√m).

Explanation:

in this question we are asked to determine if an aircraft will fracture for a given fracture toughness.

let us begin,

from the question we have that;

stress = 325 MPa

fracture toughness (KIc) = 35  MPa√m

the max internal crack length = 1.0 m

using the formula;

Y = KIc/σ√(πα)    ---------------(1)

solving for Y we have;

Y =  35 (MPa√m) / 250 (MPa) √(π × 2×10⁻3/2m)

Y = 2.50

so to calculate the fracture roughness;

Kc = Y × σ√(πα)   = 2.5 × 3.25√(π × 1×10⁻³/2) = 32.2 MPa√m

Kc = 32.2 MPa√m

From our results we can say that fracture will not occur since Kc (32.2 MPa√m) is less than KIc (35  MPa√m) of the material.

cheers i hope this helps!!!!

8 0
3 years ago
Discuss two advantages
KatRina [158]
Advantage 1- It can be more efficient and produce more product in less time
Advantage 2- Can lower the cost of production
Disadvantage 1- There will be no human feel or costumer connection in things such as high end luxury items
Disadvantage 2- Humans will still need to monitor robots regardless of level of autonomy
4 0
3 years ago
Other questions:
  • The ice on the rear window of an automobile is defrosted by attaching a thin, transparent, film type heating element to its inne
    8·1 answer
  • An escalator with 35° incline is designed to have two passengers per step. Find number of persons moved per hour for the design
    13·1 answer
  • Oil with a density of 850 kg/m3 and kinematic viscosity of 0.00062 m2/s is being discharged by an 8-mm-diameter, 42-m-long horiz
    9·1 answer
  • Paragraph summary on airplane history
    8·1 answer
  • What are the five basic elements of a system?
    15·2 answers
  • A silicon diode has a saturation current of 6 nA at 25 degrees Celcius. What is the saturation current at 100 degrees Celsius?
    15·1 answer
  • The chart describes four people’s credit histories.
    5·2 answers
  • How would you increase the size of the base unit of length in the metric system
    12·1 answer
  • Which statement is equivalent to the following? x = x * 2; x = x * x; x * 2; x *= 2; None of these
    6·1 answer
  • How long does it take to freeze a 100 mm diameter sphere of pure Aluminum in a plaster mold assuming: a. No superheat and neglec
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!