MHB  standard normal sscurve P(Z le t) =0.9

  • Thread starter Thread starter karush
  • Start date Start date
  • Tags Tags
    Normal Standard
Click For Summary
SUMMARY

The discussion focuses on representing the probability of 90% of insects dying after a certain time, t, using a standard normal curve. The calculation shows that for P(Z ≤ t) = 0.9, the corresponding Z value is 1.282, leading to t = 62.64 hours when applying the formula t = 57 + (4.4 * 1.282). The participants emphasize the importance of correctly setting the domain for the graph to visually represent the area under the curve that corresponds to this probability.

PREREQUISITES
  • Understanding of standard normal distribution and Z-scores
  • Familiarity with probability concepts, particularly cumulative distribution functions
  • Basic knowledge of TikZ for creating graphical representations in LaTeX
  • Ability to perform calculations involving means and standard deviations
NEXT STEPS
  • Learn how to create standard normal distribution graphs using TikZ in LaTeX
  • Study the properties of cumulative distribution functions (CDF) in statistics
  • Explore the implications of Z-scores in hypothesis testing
  • Investigate the application of normal distribution in real-world scenarios, such as survival analysis
USEFUL FOR

Statisticians, data analysts, researchers in biology, and anyone interested in understanding probability distributions and their graphical representations.

karush
Gold Member
MHB
Messages
3,240
Reaction score
5
b 90\% of the insects die after t hours.
(i) Represent this information on a standard normal curve diagram, indicating clearly the area representing 90\%
(ii) Find the value of \textbf{t}. $P(Z\le t) =0.9\quad Z = 1.282\quad t=57+(4.4(1.282))=62.64$ hours

\begin{tikzpicture}[scale=0.6]
%preamble \usepackage{pgfplots}
\newcommand\gauss[2]{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))} % Gauss function, parameters mu and sigma
\begin{axis}[every axis plot post/.append style={
mark=none,samples=50,smooth}, % All plots: 50 samples, smooth, no marks
axis x line*=bottom, % no box around the plot, only x axis
axis y line=none, % the * suppresses the arrow tips
enlargelimits=upper, % extend the axes a bit to the right and top
domain=-2:3, % Default for all plots: from -4:4
xtick={-.455,.9},
xticklabels={$-.455$,$.9$},
width=10cm,
height=4cm]
\addplot [fill=gray!30, draw=none, domain=-0.45:0.655] {\gauss{-0.455}{0.9}} \closedcycle;
\addplot {\gauss{-0.455}{0.9}};
\end{axis}
\end{tikzpicture}

ok I could't get this tikz to match the information
 
Physics news on Phys.org
karush said:
b 90\% of the insects die after t hours.
(i) Represent this information on a standard normal curve diagram, indicating clearly the area representing 90\%
(ii) Find the value of \textbf{t}. $P(Z\le t) =0.9\quad Z = 1.282\quad t=57+(4.4(1.282))=62.64$ hours

ok I could't get this tikz to match the information
The standard normal curve has a mean of 0 and a standard deviation of 1. It is what $Z$ represents.
Consequently we use \gauss{0}{1} to specify the corresponding curve.

The domain is then from $z=-\infty$ up to $z=1.282$ so that we get the desired probability of $0.9$.
A value of $-\infty$ does not fit in the graph though, so instead we pick a range that gives a nice graph.
Let's say we start from $z=-3$ and go up to a maximum of $z=+3$.
Then the domain of the full graph is [domain=-3:3] and the domain of the part that we want to fill is [domain=-3:1.282]

If we fill that in, we get:
\begin{tikzpicture}[scale=0.6]
%preamble \usepackage{pgfplots}
\newcommand\gauss[2]{1/(#2*sqrt(2*pi))*exp(-((x-#1)^2)/(2*#2^2))} % Gauss function, parameters mu and sigma
\begin{axis}[every axis plot post/.append style={
mark=none,samples=50,smooth}, % All plots: 50 samples, smooth, no marks
axis x line*=bottom, % no box around the plot, only x axis
axis y line=none, % the * suppresses the arrow tips
enlargelimits=upper, % extend the axes a bit to the right and top
domain=-2:3, % Default for all plots: from -4:4
xtick={1.282},
width=10cm,
height=4cm]
\addplot [fill=gray!30, draw=none, domain=-3:1.282] {\gauss{0}{1}} \closedcycle;
\addplot[domain=-3:3] {\gauss{0}{1}};
\end{axis}
\end{tikzpicture}

Btw, we don't need to specify xticklabels. Those labels are implicit. We only need it if we want to show something different than the corresponding xtick values.
 
Mahalo
yeah I am trying to learn tikz
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 2 ·
Replies
2
Views
1K
Replies
5
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 0 ·
Replies
0
Views
6K
  • · Replies 1 ·
Replies
1
Views
1K