Complete Question
The complete question is shown on the first uploaded image
Answer:
The of the lander would be 75.66 pounds
Explanation:
From the question we are given that the
Weight of the Philae on Earth is = 220 pound-mass
gravity of Mars is = 3.71 m/
Weight of the Philae on Mars is = ?
Now Mass is quantity of matter in an object so it is always constant for a particular object
Generally Weight = Mass × Gravity :

Hence
Weight of the Philae on Mars is = 


Answer:
R = 148.346 N
M₀ = - 237.2792 N-m
Explanation:
Point O is selected as a convenient reference point for the force-couple system which is to represent the given system
We can apply
∑Fx = Rx = - 60N*Cos 45° + 40N + 80*Cos 30° = 66.8556 N
∑Fy = Ry = 60N*Sin 45° + 50N + 80*Sin 30° = 132.4264 N
Then
R = √(Rx²+Ry²) ⇒ R = √((66.8556 N)²+(132.4264 N)²)
⇒ R = 148.346 N
Now, we obtain the moment about the origin as follows
M₀ = (0 m*40 N)-(7 m*60 N*Sin 45°)+(4 m*60 N*Cos 45°)-(5 m*50 N)+ 140 N-m + (0 m*80 N*Cos 30°) + (0 m*80 N*Sin 30°) = - 237.2792 N-m (clockwise)
We can see the pic shown in order to understand the question.
Answer:
You first get a new job, and make a new company and then by amazon to traumatize Jeff Bezos after his divorce
Explanation:
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}