<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Standard Normal Probability Distribution in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Standard-Normal-Probability-Distribution/m-p/234759#M42952</link>
    <description>&lt;P&gt;There are two slightly different types of "normal curve tables", more precisely: of tables of the cumulative distribution function (CDF) of the standard normal distribution N(0, 1): Some tabulate the actual&amp;nbsp;cumulative distribution function &lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;F&lt;FONT face="arial,helvetica,sans-serif"&gt;, which&amp;nbsp;satisfies &lt;/FONT&gt;F&lt;FONT face="arial,helvetica,sans-serif"&gt;(u)=P(X&amp;lt;=u) for a random variable X having a standard normal distribution (so that P(X&amp;lt;=u) is the probability that such a random variable takes a value less than or equal to u). Others tabulate, for non-negative u, the values of&amp;nbsp;&lt;FONT face="symbol"&gt;&lt;SPAN&gt;F&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(u) - 0.5, i.e. the probabilities P(0&amp;lt;X&amp;lt;=u). Your table is of the latter type.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt; Remember that the area under the bell-shaped curve representing the probability density function (PDF) of the standard normal distribution equals 1 and that it is symmetric about the y-axis, so that &lt;FONT face="symbol"&gt;&lt;SPAN&gt;F&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(0)=P(X&amp;lt;=0)=0.5.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;The SAS function CDF calculates&amp;nbsp;values of &lt;SPAN&gt;cumulative distribution functions. In particular, CDF('NORMAL', u) returns&amp;nbsp;&lt;FONT face="symbol"&gt;F&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(u). As mentioned above, you have to subtract 0.5 in order to arrive at the values found in your table.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
p=cdf('NORMAL', 2.84)-0.5;
put p 6.4;
run; /* 0.4977 */

data _null_;
p=cdf('NORMAL', 1)-0.5;
put p 6.4;
run; /* 0.3413 */
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;PDF('NORMAL', u) returns the value of the standard normal&amp;nbsp;probability density function. Its symmetry mentioned above means that&amp;nbsp;PDF('NORMAL', u)=PDF('NORMAL', -u) for all numbers u. For calculating probabilities, CDF is the function to use.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 14 Nov 2015 12:30:44 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2015-11-14T12:30:44Z</dc:date>
    <item>
      <title>Standard Normal Probability Distribution</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Normal-Probability-Distribution/m-p/234754#M42951</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need some help to find out&amp;nbsp;Standard Normal Probability Distribution .I tried various&amp;nbsp;links and post in Google to find out out the answer but could not got what exactly what i am looking for .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So here is is what i am looking for .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If my computed Z value us 2.84 the area under the curve is .4977 &amp;nbsp;and if it is 1 then its is .3413 as per the normal&amp;nbsp;curve table.&lt;/P&gt;
&lt;P&gt;I am unable to find out how to get this&amp;nbsp;&lt;SPAN&gt;.4977 and&amp;nbsp;.3413 when i have z value is 2.84 and 1 respectively .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I tried CPF and PDF function none&amp;nbsp;of this giving me&amp;nbsp; .4977 and&amp;nbsp;.3413.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can any one of you help me to find out this answers .&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;KD&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Nov 2015 09:31:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Normal-Probability-Distribution/m-p/234754#M42951</guid>
      <dc:creator>pearsoninst</dc:creator>
      <dc:date>2015-11-14T09:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Normal Probability Distribution</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Normal-Probability-Distribution/m-p/234759#M42952</link>
      <description>&lt;P&gt;There are two slightly different types of "normal curve tables", more precisely: of tables of the cumulative distribution function (CDF) of the standard normal distribution N(0, 1): Some tabulate the actual&amp;nbsp;cumulative distribution function &lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;F&lt;FONT face="arial,helvetica,sans-serif"&gt;, which&amp;nbsp;satisfies &lt;/FONT&gt;F&lt;FONT face="arial,helvetica,sans-serif"&gt;(u)=P(X&amp;lt;=u) for a random variable X having a standard normal distribution (so that P(X&amp;lt;=u) is the probability that such a random variable takes a value less than or equal to u). Others tabulate, for non-negative u, the values of&amp;nbsp;&lt;FONT face="symbol"&gt;&lt;SPAN&gt;F&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(u) - 0.5, i.e. the probabilities P(0&amp;lt;X&amp;lt;=u). Your table is of the latter type.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt; Remember that the area under the bell-shaped curve representing the probability density function (PDF) of the standard normal distribution equals 1 and that it is symmetric about the y-axis, so that &lt;FONT face="symbol"&gt;&lt;SPAN&gt;F&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(0)=P(X&amp;lt;=0)=0.5.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;The SAS function CDF calculates&amp;nbsp;values of &lt;SPAN&gt;cumulative distribution functions. In particular, CDF('NORMAL', u) returns&amp;nbsp;&lt;FONT face="symbol"&gt;F&lt;/FONT&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;(u). As mentioned above, you have to subtract 0.5 in order to arrive at the values found in your table.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
p=cdf('NORMAL', 2.84)-0.5;
put p 6.4;
run; /* 0.4977 */

data _null_;
p=cdf('NORMAL', 1)-0.5;
put p 6.4;
run; /* 0.3413 */
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;FONT face="symbol"&gt;&lt;SPAN style="line-height: normal;"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;&lt;SPAN&gt;&lt;FONT face="arial,helvetica,sans-serif"&gt;PDF('NORMAL', u) returns the value of the standard normal&amp;nbsp;probability density function. Its symmetry mentioned above means that&amp;nbsp;PDF('NORMAL', u)=PDF('NORMAL', -u) for all numbers u. For calculating probabilities, CDF is the function to use.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Nov 2015 12:30:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Normal-Probability-Distribution/m-p/234759#M42952</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2015-11-14T12:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Standard Normal Probability Distribution</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Standard-Normal-Probability-Distribution/m-p/234763#M42956</link>
      <description>THANK YOU !!!!  FreelanceReinhard.. This is why I love this forum ....THANK YOU !!!!</description>
      <pubDate>Sat, 14 Nov 2015 14:59:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Standard-Normal-Probability-Distribution/m-p/234763#M42956</guid>
      <dc:creator>pearsoninst</dc:creator>
      <dc:date>2015-11-14T14:59:42Z</dc:date>
    </item>
  </channel>
</rss>

