Answer:
Figure attached
We can conclude that majority of the values are positive. And we can say that is skewed to the right because the Median< Mean is and we have most of the values at the left of the distribution.
Explanation:
We can use the following R code to obtain the data for wdiff:
source("http://www.openintro.org/stat/data/cdc.R") #obtain the info
nrow(cdc) # number of elements
names(cdc) # obtain the name for the variable
[1] "genhlth" "exerany" "hlthplan" "smoke100" "height" "weight" "wtdesire" "age"
[9] "gender"
wdiff represent the difference between desired weight (wtdesire) and current weight (weight) and we can obtain the data with the following code:
wdiff <- (cdc$weight-cdc$wtdesire)
And now we can create the histogram with this code
hist(wdiff,xlim =c(-100,150))
> mean(wdiff)
[1] 14.5891
> median(wdiff)
[1] 10
And the result is on the figure attached.
And we can conclude that majority of the values are positive. And we can say that is skewed to the right because the Median< Mean is and we have most of the values at the left of the distribution.
Answer:
The torque on the wrench is 4.188 Nm
Explanation:
Let r = xi + yj where is the distance of the applied force to the origin.
Since x = 18 cm = 0.18 cm and y = 5.5 cm = 0.055 cm,
r = 0.18i + 0.055j
The applied force f = 88i - 23j
The torque τ = r × F
So, τ = r × F = (0.18i + 0.055j) × (88i - 23j) = 0.18i × 88i + 0.18i × -23j + 0.055j × 88i + 0.055j × -23j
= (0.18 × 88)i × i + (0.18 × -23)i × j + (0.055 × 88)j × i + (0.055 × -22)j × j
= (0.18 × 88) × 0 + (0.18 × -23) × k + (0.055 × 88) × (-k) + (0.055 × -22) × 0 since i × i = 0, j × j = 0, i × j = k and j × i = -k
= 0 - 4.14k + 0.0484(-k) + 0
= -4.14k - 0.0484k
= -4.1884k Nm
≅ -4.188k Nm
So, the torque on the wrench is 4.188 Nm
Answer:

Explanation:
Given that,
Initial speed, u = 5 m/s
Final speed, v = 10 m/s
Time, t = 2 s
The radius of the tire of the bike, r = 35 cm
We need to find the angular acceleration of the pebble during those two seconds. It can be calculated as follows.

So, the required angular acceleration of the pebble is equal to
.
For astronomical objects, the time period can be calculated using:
T² = (4π²a³)/GM
where T is time in Earth years, a is distance in Astronomical units, M is solar mass (1 for the sun)
Thus,
T² = a³
a = ∛(29.46²)
a = 0.67 AU
1 AU = 1.496 × 10⁸ Km
0.67 * 1.496 × 10⁸ Km
= 1.43 × 10⁹ Km
Answer:
It took the projectile 120 s to reach the maximum height.
Explanation:
Given;
maximum height of the projectile, s = 180 km = 180,000 m
initial speed of the projectile, u = 3 km/s = 3000 m/s
final velocity at maximum height, v = 0
Apply the following kinematic equation for average velocity of the projectile;

Therefore, it took the projectile 120 s to reach the maximum height.