Answer:
(4, -5)
Step-by-step explanation:
Start from the origin, (0, 0). Go 4 units right and 5 units down.
K(4, -5)
Umm what’s the question??
Answer:
DGF = 106
Step-by-step explanation:
Bisects means to divide in half, with two equal parts
DGF = DGE + EGF
DGE = EGF
DGF = DGE + DGE
DGF = 53+53
DGF = 106
Answer:
The 95% confidence interval for the true proportion of university students who use laptop in class to take notes is (0.2839, 0.4161).
Step-by-step explanation:
The (1 - <em>α</em>)% confidence interval for population proportion <em>P</em> is:

The information provided is:
<em>x</em> = number of students who responded as"yes" = 70
<em>n</em> = sample size = 200
Confidence level = 95%
The formula to compute the sample proportion is:

The R codes for the construction of the 95% confidence interval is:
> x=70
> n=200
> p=x/n
> p
[1] 0.35
> s=sqrt((p*(1-p))/n)
> s
[1] 0.03372684
> E=qnorm(0.975)*s
> lower=p-E
> upper=p+E
> lower
[1] 0.2838966
> upper
[1] 0.4161034
Thus, the 95% confidence interval for the true proportion of university students who use laptop in class to take notes is (0.2839, 0.4161).
A graph for the data (time and distance) shown in the given table is plotted in the image attached below.
<h3>What is a graph?</h3>
A graph can be defined as a type of chart that's commonly used to graphically represent data on both the horizontal and vertical lines of a cartesian coordinate, which are the x-axis and y-axis.
<h3>What is a linear function?</h3>
A linear function can be defined as a type of function whose equation is graphically represented by a straight line on the cartesian coordinate.
This ultimately implies that, the data of a linear graph are directly proportional and as such as the value on the x-axis increases or decreases, the values on the y-axis also increases or decreases.
In this exercise, you're required to plot a graph for the data (time and distance) that are recorded for an object that is starting from rest.
By critically observing the graph (see attachment) which models the data in the given table, we can infer and logically deduce that the linear function is given by:
y = 67.814x
Read more on graphs here: brainly.com/question/25875680
#SPJ1