<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>functions &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/functions/</link>
	<description>Feed of posts on WordPress.com tagged "functions"</description>
	<pubDate>Tue, 08 Dec 2009 11:13:58 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Using the Cumulative Interest and Principal Add-In Functions]]></title>
<link>http://antivirus2010.wordpress.com/2009/12/05/using-the-cumulative-interest-and-principal-add-in-functions/</link>
<pubDate>Sat, 05 Dec 2009 18:09:15 +0000</pubDate>
<dc:creator>ninjarich001</dc:creator>
<guid>http://antivirus2010.wordpress.com/2009/12/05/using-the-cumulative-interest-and-principal-add-in-functions/</guid>
<description><![CDATA[Excel provides two functions specifically for calculating cumulative interest and principal payments]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p> Excel provides two functions specifically for calculating cumulative interest and principal payments on a loan: CUMIPMT, which calculates the cumulative interest payments of a bond or note and CUMPRINC, which calculates the cumulative principal payments of a bond or note. </p>
<p> <b>Some background information on the Cumulative Interest and principal payments add-in functions</b> </p>
<p> Both functions use the same arguments, including the interest rate, duration) of the loan (or number of periods, the grantBalance (or present value), the start and end dates of the period for which you calculate the cumulative interest or principal payments will, and change a type of pension, to see if the stream of payments that occur as a normal retirement pension or an annuity due. </p>
<p> The interest rate maturity of loans, loan balance, and the kind-of-annuity switch arguments in the same way for the CUMIPMT CUMPRINC functions and how they work for the standard financial functions. </p>
<p> Note: If youQuestions about how the interest rate, loan term, loan balance, or type ofannuity <br /> Switch arguments work, see above in the section &#34;Using the Payment Functions.&#34; </p>
<p> The start date and end date for arguments, as mentioned above, enter the start and end points of the period for which you calculate the cumulative interest or principal will be paid. </p>
<p> <b>Common Errors Made in the use of cumulative interest and principal functions</b> </p>
<p> Both the CUMIPMT andCUMPRINC functions return an error value in several predictable situations, and a surprising situation: </p>
<p> 1. If the interest rate or loan term is less than or equal to zero. </p>
<p> 2. If the beginning or ending date is unreasonable, or if the beginning is the ending <br /> Date. </p>
<p> 3. If the loan is net present value is less than or equal to zero. (Note that this means that you do not use <br /> to show the convention of indicating present value of the loan as a negative number,that <br /> it is a cash outflow.) </p>
<p> <b>With the function CUMIPMT</b> </p>
<p> The CUMIPMT function calculates the cumulative interest paid on a loan between two dates you specify as changing the interest rate, credit, credit cash value, start and end dates and the type-of-retirement. It uses the following syntax: </p>
<p> Rate CUMIPMT (, nper pv, start, period, end of period, type) </p>
<p> Take, for example, that you paid for the accumulated interest, to 1,000,000 dollars to calculateTen-year equipment loan that charges 9% interest and requires monthly payments of a pension for arranged. Further, suppose you want the cumulative interest payments in the first five years, or sixty months to calculate. To make this calculation, use the following formula: </p>
<p> CUMIPMT = (.09/12, 10 * 12,1000000,1,60,1) </p>
<p> The function returns the value of -360,094. </p>
<p> <b>With the function CUMPRINC</b> </p>
<p> The CUMPRINC function calculates the cumulative principal paid on a loanbetween two dates you specify as changing the interest rate, credit, credit cash value, start and end dates and the type-of-retirement. It uses the following syntax: </p>
<p> CUMPRINC (rate, ZZR, BW, period, end of period start, type) </p>
<p> Take, for example, that the cumulative amount of capital at a $ 1,000,000 ten-year equipment loans that charge the fees paid 9% interest and requires monthly payments of a pension arranged motion. Further, suppose you want to calculatethe cumulative principal payments during the first five years, months, or sixty. To make this calculation, use the following formula: </p>
<p> CUMPRINC = (.09/12, 10 * 12,1000000,1,60,1) </p>
<p> The function returns the value of -394,303. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to write Function in SQL Server 2005]]></title>
<link>http://khanrahim.wordpress.com/2009/12/04/how-to-write-function-in-sql-server-2005/</link>
<pubDate>Fri, 04 Dec 2009 12:39:02 +0000</pubDate>
<dc:creator>khanrahim</dc:creator>
<guid>http://khanrahim.wordpress.com/2009/12/04/how-to-write-function-in-sql-server-2005/</guid>
<description><![CDATA[User Defined Functions in SQL Server stops coders write redundant code. There are two types of UDFs:]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>User Defined Functions in SQL Server stops coders write redundant code. There are two types of UDFs:<br />
❑ Those that return a scalar value<br />
❑ Those that return a table</p>
<p><strong>//Create Table</strong><br />
<code>create table t_EmployeeInformation<br />
(<br />
 employee_ID int identity(1,1) NOT NULL,<br />
 employee_Name varchar(50),<br />
 employee_EmailID varchar(20)<br />
)<br />
</code><br />
<strong>Following code snippet shows a function that returns a scalar value.</strong></p>
<p><strong>//Create Function</strong><br />
<code>create function f_GetEmployeeId(@employee_EmailID varchar(50))<br />
returns int<br />
as<br />
return<br />
(<br />
 select employee_ID from t_EmployeeInformation<br />
 where employee_EmailID = @employee_EmailID<br />
)<br />
</code></p>
<p><strong>//Use Function</strong><br />
<code>select dbo.f_GetEmployeeId('khan.rahim@gmail.com')<br />
</code></p>
<p><strong>This creates a function that returns a table.</strong></p>
<p><strong>//Create Function</strong><br />
<code>create function f_GetEmployee(@employee_EmailID varchar(50))<br />
returns table<br />
as<br />
return<br />
(<br />
 select employee_ID as "ID", employee_Name as "Name"<br />
 from t_EmployeeInformation<br />
 where employee_EmailID = @employee_EmailID<br />
)</code></p>
<p><strong>//Use Function</strong><br />
<code>select * from dbo.f_GetEmployee('khan.rahim@gmail.com')<br />
</code></p>
<p>Thanks<br />
<strong>A Rahim Khan</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PHP Functions 101 – str_replace()]]></title>
<link>http://igzactly.wordpress.com/2009/12/03/php-functions-101-%e2%80%93-str_replace/</link>
<pubDate>Fri, 04 Dec 2009 00:17:51 +0000</pubDate>
<dc:creator>ffxfiend</dc:creator>
<guid>http://igzactly.wordpress.com/2009/12/03/php-functions-101-%e2%80%93-str_replace/</guid>
<description><![CDATA[Welcome back. We&#8217;re in the midst of the holidays and I hope ever one is having a good time. I ]]></description>
<content:encoded><![CDATA[Welcome back. We&#8217;re in the midst of the holidays and I hope ever one is having a good time. I ]]></content:encoded>
</item>
<item>
<title><![CDATA[Title Of the Year: Go suck your thumb.]]></title>
<link>http://akshaysvision.wordpress.com/2009/12/03/title-of-the-year-go-suck-your-thumb/</link>
<pubDate>Thu, 03 Dec 2009 16:24:15 +0000</pubDate>
<dc:creator>akshaysworld</dc:creator>
<guid>http://akshaysvision.wordpress.com/2009/12/03/title-of-the-year-go-suck-your-thumb/</guid>
<description><![CDATA[Okay, so first of all news updates: IMAGE 2009 started today and will continue tomorrow. Our show is]]></description>
<content:encoded><![CDATA[Okay, so first of all news updates: IMAGE 2009 started today and will continue tomorrow. Our show is]]></content:encoded>
</item>
<item>
<title><![CDATA[Lesson 5:  Holy Spirit - Ministry, Part One]]></title>
<link>http://tdmitchell.wordpress.com/2009/11/30/lesson-5-holy-spirit-ministry-part-one/</link>
<pubDate>Tue, 01 Dec 2009 04:16:47 +0000</pubDate>
<dc:creator>tdmitchell</dc:creator>
<guid>http://tdmitchell.wordpress.com/2009/11/30/lesson-5-holy-spirit-ministry-part-one/</guid>
<description><![CDATA[In earlier essays, the reader was introduced to the Holy Spirit, learned of His personality, and dei]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/CSKl_YjSN3g&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/CSKl_YjSN3g&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>In earlier essays, the reader was introduced to the Holy Spirit, learned of His personality, and deity.</p>
<p><em><span style="color:#ccffff;">A sentence is forming: a definition.</span></em></p>
<p>The Holy Spirit is a person.</p>
<p>The Holy Spirit is a person, the third person of the Holy Trinity.</p>
<p>The Holy Spirit is a person, the third person of the Holy Trinity, and is divine.</p>
<p><span style="color:#ff0000;">The Holy Spirit is a <em>divine</em> person within the Holy Trinity <em>who has various ministries</em>.</span></p>
<p><strong>This is where we pick up</strong>: the various ministries of the Holy Spirit.</p>
<p>In business meetings, the first order of business is usually roundtable introductions. These are brief; you must give your name, title, and function in two minutes or less, with the emphasis on less. What sets you apart? What generally identifies you in a business meeting? Your function, what role you play in the organization is what sets you apart. People seek out “go-to” contacts within an organization. If they need what you provide, your name, telephone, and e-mail address is going in their contacts list for future reference.</p>
<p>The ministries of the Holy Spirit provide the same. His functions within the Godhead as well as the body of Christ tell us much about Him; they define Him just as our positions define us. It lets us know that for all things, He is the “go-to” in matters of faith. He seeks us out; we can pursue Him too. He is always there and listening; He is the God who is there. He wants us to “go-to” Him. He has been waiting since before time began to have a moment with you, to abide with you, and offer you everlasting comfort. All you have to do is open that line of communication, let Him come into your heart and life, and He will fill you with the peace that passes all understanding.</p>
<p>So, let’s learn even more about the ministries of the lesser known part of the Godhead.</p>
<p><strong><span style="color:#ffcc00;">A Creator, not a Creation</span></strong></p>
<p>Even with God, humans ask for a starting point. He does not have a beginning per se but He does have a point of entry into the human experiment. Most believe this portal opened in Acts 2 but this is not the case. The Scriptures tell us He was present from the foundations of the World. “Now the earth was <sup>[<a title="See footnote a" href="http://www.biblegateway.com/passage/?search=genesis%201&#38;version=NIV#fen-NIV-2a"><span style="text-decoration:underline;">a</span></a>]</sup> formless and empty, darkness was over the surface of the deep, and the Spirit of God was hovering over the waters (Gen 1:2 NIV).” Later in the chapter, we read the Godhead’s discourse concerning the forming of man “….let us make man in our own image” thereby confirming the presence of each since the dawn of time as humans know it.</p>
<p>God created all things according to the psalmist David (Psa. 19:1) even though John the Beloved gives credit to God the Son for it (John 1:3,4). If we look to other Scripture passages though we learn the Holy Spirit performed the initial act of creation. So, who takes the credit? All of them do; all of them were present. H.L. Wilmington uses the illustration of God the Father being an executive with a Son, who is an architect with a contractor who is the Holy Spirit.</p>
<p>“Thou sendest forth thy spirit, they are created; and thou renewest the face of the earth (Psalm 104:30 KJV).”</p>
<p>“By His spirit He hath garnished the heavens; His hand hath formed the crooked serpent (Job 26:13 KJV).”</p>
<p>“The spirit of God hath made me, and the breath of the Almighty hath given me life (Job 33:4 KJV).”</p>
<p>“Then he said to me, &#8220;Prophesy to the breath; prophesy, son of man, and say to it, &#8216;This is what the Sovereign LORD says: Come from the four winds, O breath, and breathe into these slain, that they may live.&#8217; (Ezekiel 37:9 NIV).“</p>
<p>Dr. James Kennedy writes in his work, <em><a href="http://www.amazon.com/Why-Believe-D-James-Kennedy/dp/0849937396">Why I Believe</a></em>, “I believe in the Holy Spirit not only because of who the Bible says He is but because of what the Bible says He does. The Scriptures give us an amazing report of His activities. Certainly, the list is far too long to include here, but among His works are: He created the world, the world being created out of the Father through the Son and by the Holy Spirit. The Holy Spirit inspired the writing of the Scriptures so that the Bible is not like any other book; but God the Holy Spirit is the author thereof working through the instrumentality of men. The Holy Spirit caused Christ to be conceived in the womb of Mary, of whom it is said, “The Holy Ghost shall come upon thee.” It was the Holy Spirit who baptized Jesus [descended as a dove] who led him and empowered Him. The Holy Spirit is also described as having raised Jesus from the dead (146).” The Holy Spirit, being poured out upon the people, was responsible for the added 3,000 to the family of God on that day called Pentecost. And it is the Holy Spirit who indwells the lost soul and redeems it for all eternity. It is through Him that we may cry “Abba, Father!” Is there anything too great for Him? Is there anything He cannot do? No, He can do anything He wills. He is God.</p>
<p><strong><span style="color:#ffcc00;">Plenary Verbal Inspiration, God-Breathed Revelation</span></strong></p>
<p>The blessed Holy Spirit is the author of the Scriptures. As the Spirit moved, so did the hearts of men stir to bring about the Holy Writ known today as God’s Word. His authorship is verified by the following men of God.</p>
<p>1) David: “The spirit of the Lord spake by me, and his word was in my tongue (2 Samuel 23:2 KJV).”</p>
<p>2) Isaiah: “As for me, this is my covenant with them, saith the Lord; My Spirit that is upon thee, and my words whichI have put in thy mouth, shall not depart out of thy mouth, nor out of the mouth of thy seed, nor out of the mouth of they seed’s seed, saith the Lord, from henceforth and for ever (Isaiah 59:21 KJV).”</p>
<p>3) Jeremiah: “Then the Lord put forth his hand, and touched my mouth, And the Lord said unto me, Behold, I have put my words in thy mouth (Jeremiah 1:9 KJV).”</p>
<p>4) Jesus: “For verily I say unto you, till heaven and earth pass, on jot or one tittle shall in no wise pass from the laws, till all be fulfilled (Matthew 5:18 KJV).”</p>
<p>5) Peter: “For the prophecy came not in old time by the will of man; but holy men of God spake as they were moved by the Holy Ghost (2 Peter 1:21 KJV).”</p>
<p>6) Paul: “And that from a child thou has known the holy scriptures, which are able to make thee wise unto salvation through faith which is in Christ Jesus. All scripture is given by inspiration of God, and is profitable for doctrine, for reproof, for correction, for instruction in righteousness: that the man of God may be perfect, thoroughly furnished unto all good works (2 Timothy 3:15-17 KJV).”</p>
<p>7) John: “In the beginning was the Word…”</p>
<p><strong><sup>1</sup></strong>In the beginning was the Word, and the Word was with God, and the Word was God.</p>
<p><strong><sup>2</sup></strong>The same was in the beginning with God.</p>
<p><strong><sup>3</sup></strong>All things were made by him; and without him was not any thing made that was made.</p>
<p><strong><sup>4</sup></strong>In him was life; and the life was the light of men.</p>
<p><strong><sup>5</sup></strong>And the light shineth in darkness; and the darkness comprehended it not.</p>
<p><strong><sup>6</sup></strong>There was a man sent from God, whose name was John.</p>
<p><strong><sup>7</sup></strong>The same came for a witness, to bear witness of the Light, that all men through him might believe.</p>
<p><strong><sup>8</sup></strong>He was not that Light, but was sent to bear witness of that Light.</p>
<p><strong><sup>9</sup></strong>That was the true Light, which lighteth every man that cometh into the world.</p>
<p><strong><sup>10</sup></strong>He was in the world, and the world was made by him, and the world knew him not.</p>
<p><strong><sup>11</sup></strong>He came unto his own, and his own received him not.</p>
<p><strong><sup>12</sup></strong>But as many as received him, to them gave he power to become the sons of God, even to them that believe on his name:</p>
<p><strong><sup>13</sup></strong>Which were born, not of blood, nor of the will of the flesh, nor of the will of man, but of God.</p>
<p><strong><sup>14</sup></strong>And the Word was made flesh, and dwelt among us, (and we beheld his glory, the glory as of the only begotten of the Father,) full of grace and truth.</p>
<p><strong><sup>15</sup></strong>John bare witness of him, and cried, saying, This was he of whom I spake, He that cometh after me is preferred before me: for he was before me.</p>
<p><strong><sup>16</sup></strong>And of his fulness have all we received, and grace for grace.</p>
<p><strong><sup>17</sup></strong>For the law was given by Moses, but grace and truth came by Jesus Christ.</p>
<p><strong><sup>18</sup></strong>No man hath seen God at any time, the only begotten Son, which is in the bosom of the Father, he hath declared him.</p>
<p><strong><sup>19</sup></strong>And this is the record of John, when the Jews sent priests and Levites from Jerusalem to ask him, Who art thou?</p>
<p><strong><sup>20</sup></strong>And he confessed, and denied not; but confessed, I am not the Christ.</p>
<p><strong><sup>21</sup></strong>And they asked him, What then? Art thou Elias? And he saith, I am not. Art thou that prophet? And he answered, No.</p>
<p><strong><sup>22</sup></strong>Then said they unto him, Who art thou? that we may give an answer to them that sent us. What sayest thou of thyself?</p>
<p><strong><sup>23</sup></strong>He said, I am the voice of one crying in the wilderness, Make straight the way of the Lord, as said the prophet Esaias.</p>
<p><strong><sup>24</sup></strong>And they which were sent were of the Pharisees.</p>
<p><strong><sup>25</sup></strong>And they asked him, and said unto him, Why baptizest thou then, if thou be not that Christ, nor Elias, neither that prophet?</p>
<p><strong><sup>26</sup></strong>John answered them, saying, I baptize with water: but there standeth one among you, whom ye know not;</p>
<p><strong><sup>27</sup></strong>He it is, who coming after me is preferred before me, whose shoe&#8217;s latchet I am not worthy to unloose.</p>
<p><strong><sup>28</sup></strong>These things were done in Bethabara beyond Jordan, where John was baptizing.</p>
<p><strong><sup>29</sup></strong>The next day John seeth Jesus coming unto him, and saith, Behold the Lamb of God, which taketh away the sin of the world.</p>
<p><strong><sup>30</sup></strong>This is he of whom I said, After me cometh a man which is preferred before me: for he was before me.</p>
<p><strong><sup>31</sup></strong>And I knew him not: but that he should be made manifest to Israel, therefore am I come baptizing with water.</p>
<p><strong><sup>32</sup></strong>And John bare record, saying, I saw the Spirit descending from heaven like a dove, and it abode upon him.</p>
<p><strong><sup>33</sup></strong>And I knew him not: but he that sent me to baptize with water, the same said unto me, Upon whom thou shalt see the Spirit descending, and remaining on him, the same is he which baptizeth with the Holy Ghost.</p>
<p><strong><sup>34</sup></strong>And I saw, and bare record that this is the Son of God.</p>
<p><strong><sup>35</sup></strong>Again the next day after John stood, and two of his disciples;</p>
<p><strong><sup>36</sup></strong>And looking upon Jesus as he walked, he saith, Behold the Lamb of God!</p>
<p><strong><sup>37</sup></strong>And the two disciples heard him speak, and they followed Jesus.</p>
<p><strong><sup>38</sup></strong>Then Jesus turned, and saw them following, and saith unto them, What seek ye? They said unto him, Rabbi, (which is to say, being interpreted, Master,) where dwellest thou?</p>
<p><strong><sup>39</sup></strong>He saith unto them, Come and see. They came and saw where he dwelt, and abode with him that day: for it was about the tenth hour.</p>
<p><strong><sup>40</sup></strong>One of the two which heard John speak, and followed him, was Andrew, Simon Peter&#8217;sbrother.</p>
<p><strong><sup>41</sup></strong>He first findeth his own brother Simon, and saith unto him, We have found the Messias, which is, being interpreted, the Christ.</p>
<p><strong><sup>42</sup></strong>And he brought him to Jesus. And when Jesus beheld him, he said, Thou art Simon the son of Jona: thou shalt be called Cephas, which is by interpretation, A stone.</p>
<p><strong><sup>43</sup></strong>The day following Jesus would go forth into Galilee, and findeth Philip, and saith unto him, Follow me.</p>
<p><strong><sup>44</sup></strong>Now Philip was of Bethsaida, the city of Andrew and Peter.</p>
<p><strong><sup>45</sup></strong>Philip findeth Nathanael, and saith unto him, We have found him, of whom Moses in the law, and the prophets, did write, Jesus of Nazareth, the son of Joseph.</p>
<p><strong><sup>46</sup></strong>And Nathanael said unto him, Can there any good thing come out of Nazareth? Philip saith unto him, Come and see.</p>
<p><strong><sup>47</sup></strong>Jesus saw Nathanael coming to him, and saith of him, Behold an Israelite indeed, in whom is no guile!</p>
<p><strong><sup>48</sup></strong>Nathanael saith unto him, Whence knowest thou me? Jesus answered and said unto him, Before that Philip called thee, when thou wast under the fig tree, I saw thee.</p>
<p><strong><sup>49</sup></strong>Nathanael answered and saith unto him, Rabbi, thou art the Son of God; thou art the King of Israel.</p>
<p><strong><sup>50</sup></strong>Jesus answered and said unto him, Because I said unto thee, I saw thee under the fig tree, believest thou? thou shalt see greater things than these.</p>
<p><strong><sup>51</sup></strong>And he saith unto him, Verily, verily, I say unto you, Hereafter ye shall see heaven open, and the angels of God ascending and descending upon the Son of man (John 1:1-51 KJV).”</p>
<p><strong><span style="color:#ffcc00;">To Be Continued:</span></strong></p>
<p>Next Up: The Ministry of the Holy Spirit, Part Two</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Goodbye Tompkins]]></title>
<link>http://chokladig.wordpress.com/2009/11/30/goodbye-tompkins/</link>
<pubDate>Mon, 30 Nov 2009 13:02:18 +0000</pubDate>
<dc:creator>Angelina</dc:creator>
<guid>http://chokladig.wordpress.com/2009/11/30/goodbye-tompkins/</guid>
<description><![CDATA[Saturday was my final shift in Tompkins, we stayed up for drinks till 4.30am. Woohoo! It was good. T]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><em>Saturday was my final shift in Tompkins, we stayed up for drinks till 4.30am. Woohoo! It was good. Tash was so lovely, she brought us chips, chocolates, chicken salads &#38; turkey. She&#8217;s like the best manager I ever had. I want to thank everyone in Tompkins Park, you guys made my stay in Perth very memorable. <strong>HUGS!</strong></em></p>
<div style="text-align:center;"><em>I&#8217;ll miss everyone including those not in the pictures </em></div>
<div style="text-align:center;"><em>Champagne, wine, shots,  beer, whiskey &#8230; wooo.</em></div>
<p style="text-align:center;"><em><a style="text-decoration:none;" href="http://chokladig.wordpress.com/files/2009/11/img_757411.jpg"><img class="aligncenter size-full wp-image-1914" title="IMG_75741" src="http://chokladig.wordpress.com/files/2009/11/img_757411.jpg" alt="" width="405" height="304" /></a></em></p>
<p style="text-align:center;"><em><a style="text-decoration:none;" href="http://chokladig.wordpress.com/files/2009/11/img_75751.jpg"><img class="aligncenter size-full wp-image-1915" title="IMG_75751" src="http://chokladig.wordpress.com/files/2009/11/img_75751.jpg" alt="" width="405" height="304" /></a></em></p>
<p style="text-align:center;"><em><a href="http://chokladig.wordpress.com/files/2009/11/img_75731.jpg"><img class="aligncenter size-full wp-image-1916" title="IMG_75731" src="http://chokladig.wordpress.com/files/2009/11/img_75731.jpg" alt="" width="405" height="317" /></a></em></p>
<p style="text-align:center;"><em>Faces of Tompkins Park</em></p>
<p style="text-align:center;"><a style="text-decoration:none;" href="http://chokladig.wordpress.com/files/2009/11/work1.jpg"><img class="aligncenter size-full wp-image-1917" title="Work1" src="http://chokladig.wordpress.com/files/2009/11/work1.jpg" alt="" width="378" height="287" /></a></p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/work3.jpg"><img class="aligncenter size-full wp-image-1918" title="work3" src="http://chokladig.wordpress.com/files/2009/11/work3.jpg" alt="" width="378" height="285" /></a><a href="http://chokladig.wordpress.com/files/2009/11/work4.jpg"></a></p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/work4.jpg"><img class="aligncenter size-full wp-image-1919" title="work4" src="http://chokladig.wordpress.com/files/2009/11/work4.jpg" alt="" width="378" height="284" /></a><a href="http://chokladig.wordpress.com/files/2009/11/work2.jpg"></a></p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/work2.jpg"><img class="aligncenter size-full wp-image-1920" title="work2" src="http://chokladig.wordpress.com/files/2009/11/work2.jpg" alt="" width="378" height="290" /></a><a href="http://chokladig.wordpress.com/files/2009/11/img_75841.jpg"></a></p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/img_75841.jpg"><img class="aligncenter size-full wp-image-1921" title="DJ Jon &#38; Me. " src="http://chokladig.wordpress.com/files/2009/11/img_75841.jpg" alt="" width="288" height="215" /></a><a href="http://chokladig.wordpress.com/files/2009/11/img_76111.jpg"></a></p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/img_76111.jpg"><img class="aligncenter size-full wp-image-1922" title="Tash &#38; Me" src="http://chokladig.wordpress.com/files/2009/11/img_76111.jpg" alt="" width="288" height="215" /></a><a href="http://chokladig.wordpress.com/files/2009/11/img_76201.jpg"></a></p>
<p style="text-align:center;">
<p style="text-align:center;"><em>Working in Fremantle Town Hall on Fri. FUN!</em></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-1935" title="13333_193205296261_708151261_3514107_805326_n" src="http://chokladig.wordpress.com/files/2009/11/13333_193205296261_708151261_3514107_805326_n.jpg" alt="" width="400" height="300" /><em> </em></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-1939" title="13333_193206476261_708151261_3514110_4849942_n" src="http://chokladig.wordpress.com/files/2009/11/13333_193206476261_708151261_3514110_4849942_n.jpg" alt="" width="270" height="203" /></p>
<p style="text-align:center;"><em><img class="aligncenter size-full wp-image-1936" title="IMG_75301" src="http://chokladig.wordpress.com/files/2009/11/img_75301.jpg" alt="" width="155" height="206" /></em></p>
<p style="text-align:left;"><em>Last week was insanely busy! Sun = Brisbane Bar ; Mon = city ; Tues = Beach ; Wed = Shopping in city &#38; dinner in Matsuri with Hwee Ping ; Thurs = work from 7.30am to 2pm followed by shopping till 8pm ; Fri = 14 hours of work straight; Sat = last day in Tompkins</em>.</p>
<p><em>Events for this week: Sun = Brisbane Bar (again) with Rhiannon, Fabi, John &#38; Jesper, followed by supper in chinatown till 2.30am ; Mon = uni, Garden City &#38; packing ; Tues = BBQ at Fabi&#8217;s ; Wed = packing &#38; shopping ; Thurs = Flight SQ226 back to S&#8217;pore ; Fri = shopping for suit, Sweden Embassy, pre-placement briefing in city; Sat = Parrtyyy!</em></p>
<div style="text-align:center;"><em><strong>Shortlisted Photos from National Geographic International Photo Contest&#8217;09 </strong></em></div>
<div style="text-align:center;"><em>These photos are taken from <a href="http://www.boston.com/bigpicture/2009/11/national_geographics_internati.html">here</a></em><em> &#38; these are my personal fav!</em></div>
<p style="text-align:center;"><em>Nazroo&#38; his elephant, Rajan, in Havelock, Andaman Islands</em></p>
<p style="text-align:center;"><em><a href="http://chokladig.wordpress.com/files/2009/11/n01_00000001.jpg"><img class="aligncenter size-full wp-image-1926" title="n01_00000001" src="http://chokladig.wordpress.com/files/2009/11/n01_00000001.jpg" alt="" width="450" height="275" /></a></em></p>
<p style="text-align:center;"><em>The sweetest pic! A photo of the photographer&#8217;s grandparents</em></p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/n10_00000010.jpg"><img class="aligncenter size-full wp-image-1927" title="n10_00000010" src="http://chokladig.wordpress.com/files/2009/11/n10_00000010.jpg" alt="" width="450" height="299" /></a></p>
<p style="text-align:center;">I love photos of trees &#8230; i pick this as one of my fav</p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/n19_00000019.jpg"><img class="aligncenter size-full wp-image-1929" title="n19_00000019" src="http://chokladig.wordpress.com/files/2009/11/n19_00000019.jpg" alt="" width="450" height="300" /></a></p>
<p style="text-align:center;"><em>The edge of an iceberg floating just off the coast of Antarctica</em></p>
<p style="text-align:center;"><a href="http://www.boston.com/bigpicture/2009/11/national_geographics_internati.html"><img class="aligncenter size-full wp-image-1928" title="n14_00000014" src="http://chokladig.wordpress.com/files/2009/11/n14_00000014.jpg" alt="" width="450" height="300" /></a></p>
<p style="text-align:center;"><em>Innocently adorable </em></p>
<p style="text-align:center;"><a href="http://chokladig.wordpress.com/files/2009/11/n21_00000021.jpg"><img class="aligncenter size-full wp-image-1930" title="n21_00000021" src="http://chokladig.wordpress.com/files/2009/11/n21_00000021.jpg" alt="" width="450" height="312" /></a></p>
<p style="text-align:center;"><em>As I mentioned earlier in my previous post, Seagulls are scary &#8230;</em></p>
<p style="text-align:center;"><em><a href="http://chokladig.wordpress.com/files/2009/11/n25_00000025.jpg"><img class="aligncenter size-full wp-image-1925" title="n25_00000025" src="http://chokladig.wordpress.com/files/2009/11/n25_00000025.jpg" alt="" width="450" height="329" /></a></em></p>
<p><em>P.S. I&#8217;ve finally created my new header. Woohoo! Now reluctantly, back to packing&#8230; </em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Love's Secret Domain]]></title>
<link>http://manorbeast.wordpress.com/2009/11/27/loves-secret-domain/</link>
<pubDate>Fri, 27 Nov 2009 13:26:20 +0000</pubDate>
<dc:creator>manorbeast</dc:creator>
<guid>http://manorbeast.wordpress.com/2009/11/27/loves-secret-domain/</guid>
<description><![CDATA[the return, after a three year hiatus, Adam Parkinson brings back LSD to Newcastle &#8211; expect fi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://manorbeast.wordpress.com/files/2009/11/lsd_picture.jpg"></a><a href="http://manorbeast.wordpress.com/files/2009/11/lsd_picture1.jpg"><img class="alignleft size-medium wp-image-81" title="LSD" src="http://manorbeast.wordpress.com/files/2009/11/lsd_picture1.jpg?w=212" alt="" width="269" height="380" /></a></p>
<p>the return, after a three year hiatus, Adam Parkinson brings back LSD to Newcastle &#8211; expect fizzy noise, heavy bass, cracks, acidic forays &#38; bastard pop from OX &#38; BULL. Should be a blast..</p>
<p>&#160;</p>
<p>&#160;</p>
<p>here&#8217;s the promotional mix &#8211; it&#8217;s great, a potent blend including War Against Sleep, Gold Panda, Nite Jewell and more at sea on an ocean of dissonance. Attend.<br />
<object height="81" width="100%"><param name="movie" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fadamparkinson%2Flsd&amp;g=1&amp;"></param><param name="allowscriptaccess" value="always"></param><embed allowscriptaccess="always" height="81" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fadamparkinson%2Flsd&amp;g=1&amp;" type="application/x-shockwave-flash" width="100%"> </embed> </object> <a href="http://soundcloud.com/adamparkinson/lsd">Love&#8217;s Secret Domain Mix</a> by  <a href="http://soundcloud.com/adamparkinson">adam parkinson</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[GeoGebra Tutorial: Graphing Functions Using GeoGebra]]></title>
<link>http://math4allages.wordpress.com/2009/11/26/geogebra-tutorial-graphing-functions-using-geogebra/</link>
<pubDate>Thu, 26 Nov 2009 03:03:37 +0000</pubDate>
<dc:creator>Guillermo Bautista</dc:creator>
<guid>http://math4allages.wordpress.com/2009/11/26/geogebra-tutorial-graphing-functions-using-geogebra/</guid>
<description><![CDATA[Basic Graphing You can graph in by typing equations of functions in the Input box. Figure 1 &#8211; ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Basic Graphing</strong></p>
<p>You can graph in by typing equations of functions in the <em>Input</em> <em>box</em>.<a href="http://math4allages.wordpress.com/files/2009/11/figure12.png"><img class="size-full wp-image-540" title="figure1" src="http://math4allages.wordpress.com/files/2009/11/figure12.png" alt="" width="659" height="440" /></a></p>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter">
<dd class="wp-caption-dd">Figure 1 &#8211; The GeoGebra Window</dd>
</dl>
</div>
<p>Type the following equations of functions in the Input box and press the ENTER key after each equation.</p>
<ol>
<li>y = 2x + 3</li>
<li>f(x) = -3x + 5</li>
<li>2x – 3y + 6 = 0</li>
<li>g(x) = sin(x)</li>
<li>y = x^3 &#8211; 1</li>
</ol>
<p>Notes:</p>
<ul>
<li>You can type linear equations in the following forms:  <em><strong>y</strong></em> = <strong>a<em>x</em> + b</strong>,<strong> f</strong><strong>(<em>x</em>) = a(<em>x</em>) + b </strong>or <strong>a</strong><strong><em>x</em> + b<em>y</em> + c = 0.</strong></li>
<li>The * is used in multiplication and ^ is used in exponentiation. For example you want to graph, <strong><em>y</em> = 2(<em>x</em> – 3)</strong><sup><strong>2</strong></sup>, then you should enter <strong>y = 2*(<em>x</em>-3)^2</strong>.</li>
</ul>
<p><strong>Properties of Graph</strong></p>
<p>You can change the  labels, colors, thickness and other properties of graphs (and other objects) in GeoGebra. In this tutorial we are going to change the color, label and thickness of the graph <strong>g(<em>x</em>) = sin(<em>x</em>)</strong>.</p>
<p>To change the properties of the graph <strong>g(<em>x</em>) = sin(<em>x</em>)</strong>, do the following:</p>
<p>1.)    Right click the graph of the sine function then click <strong>Object Properties</strong> from the <em>context menu</em>.</p>
<div id="attachment_542" class="wp-caption aligncenter" style="width: 636px"><a href="http://math4allages.wordpress.com/files/2009/11/figure22.png"><img class="size-full wp-image-542" title="figure2" src="http://math4allages.wordpress.com/files/2009/11/figure22.png" alt="" width="626" height="368" /></a><p class="wp-caption-text">Figure 2 - The context menu that appears when you right-click a graph</p></div>
<p>2.)    In the <em>Basic</em> tab, be sure that the <em>Show label</em> check box is checked.</p>
<p>3.) Choose <strong>Name and Value </strong>from the Show label drop-down list box.</p>
<div id="attachment_544" class="wp-caption aligncenter" style="width: 609px"><a href="http://math4allages.wordpress.com/files/2009/11/figure3.png"><img class="size-full wp-image-544" title="figure3" src="http://math4allages.wordpress.com/files/2009/11/figure3.png" alt="" width="599" height="416" /></a><p class="wp-caption-text">Figure 3 - The Basic tab of the Properties dialog box</p></div>
<p>4.)    To change the color, click the <strong><em>Color</em></strong> tab, then choose your color from the Color palette.</p>
<p>5.)    To change the thickness of the graph, click the <strong><em>Style</em> </strong>tab, move the slider bar to<strong> 5</strong>.</p>
<div id="attachment_545" class="wp-caption aligncenter" style="width: 399px"><a href="http://math4allages.wordpress.com/files/2009/11/figure-41.png"><img class="size-full wp-image-545" title="figure 4" src="http://math4allages.wordpress.com/files/2009/11/figure-41.png" alt="" width="389" height="217" /></a><p class="wp-caption-text">Figure 4 - The Style tab of the Properties dialog box.</p></div>
<p>6.)    Click the <strong>Close </strong>button</p>
<p>Exercise: Change the properties of the other graphs. Explore the options in the <em>Properties </em>dialog box and see their effects to the graphs.</p>
<p>You may also want to view another tutorial on <a href="http://math4allages.wordpress.com/2009/11/13/geogebra-tutorial-4-graphs-and-sliders/" target="_blank">graphs and sliders</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[
Oracle Packages, Procedures, Functions ... ]]></title>
<link>http://oraclepassport.wordpress.com/2009/11/25/oracle-packages-procedures-functions/</link>
<pubDate>Wed, 25 Nov 2009 00:58:25 +0000</pubDate>
<dc:creator>oraclepassport</dc:creator>
<guid>http://oraclepassport.wordpress.com/2009/11/25/oracle-packages-procedures-functions/</guid>
<description><![CDATA[Oracle Packages, Procedures, Functions http://www.oraclepassport.com/Oracle%20Packages.html]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Oracle Packages, Procedures, Functions</p>
<p>http://www.oraclepassport.com/Oracle%20Packages.html</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Reports Developer / SSRS - DIRECT HIRE - Boca Raton, FL]]></title>
<link>http://recruiterfl.wordpress.com/2009/11/24/reports-developer-ssrs-direct-hire-boca-raton-fl/</link>
<pubDate>Tue, 24 Nov 2009 14:20:24 +0000</pubDate>
<dc:creator>Ruben Rabines</dc:creator>
<guid>http://recruiterfl.wordpress.com/2009/11/24/reports-developer-ssrs-direct-hire-boca-raton-fl/</guid>
<description><![CDATA[Please send resumes to rrabines@topsource.com Location: Boca Raton, FL Title: Reports Developer / SS]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Please send resumes to rrabines@topsource.com</strong></p>
<p><strong> </strong></p>
<p><strong>Location: Boca Raton, FL</strong></p>
<p><strong>Title: Reports Developer / SSRS</strong></p>
<p><strong>Salary: $60,000 &#8211; $65,000/year + Benefits</strong></p>
<p><strong> </strong></p>
<p>&#160;</p>
<p>The ideal <strong>Reports Developer </strong>will need to be effective developing in MS SQL.</p>
<p>&#160;</p>
<p>Responsibilities:</p>
<p>&#160;</p>
<p>-     Monitors integration logs and effectively debugs and resolves issues</p>
<p>-     Manages regular data integration updates from schools which involves managing school data loads; school and campus metadata, school lead forms, lead caps, lead delivery, and all respective web site mappings to schools and their respective program offerings</p>
<p>-     Launches school integrations with new customers in a timely manner.</p>
<p>-     Manages day-to-day interaction and expectations with Sales</p>
<p>-     Works effectively with peers in IT</p>
<p>-     Ensures deliverables for projects are well documented, approved, and prioritized by management</p>
<p>-     Ensures changes to project schedule and/or scope are reviewed and approved</p>
<p>-     Ensures all initiatives follow our SDLC methodology</p>
<p>-     Leads the testing efforts for integration</p>
<p>-     Effectively communicates relevant project information</p>
<p>-     Resolves and/or escalates issues in a timely fashion</p>
<p>&#160;</p>
<p>Requirements:</p>
<p>&#160;</p>
<p>-     3+ years experience developing in MS SQL Server (stored procedures, functions, views)</p>
<p>-     3+ years experience developing MS SQL reports using SSRS</p>
<p>-     3+ years experience working with stakeholders</p>
<p>-     3+ years using advanced features in Excel working with raw data and reporting</p>
<p>-     Experience working in a Microsoft .NET environment with specific aptitude using xml and web services.</p>
<p>-     Experience working within an enterprise IT environment</p>
<p>-     Participate in on-call production support, providing off-hour support as appropriate</p>
<p>-     Represents the organization and self professionally</p>
<p>-     Effective time management and organization skills</p>
<p>-     Ability to work on multiple projects</p>
<p>-     Excelling verbal and written communication skills</p>
<p>-     Ability to work within team environment</p>
<p>-     Ability to work independently</p>
<p>-     Ability to be a self starter to promote new initiatives</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Christmas Functions]]></title>
<link>http://mumuland.wordpress.com/2009/11/23/functions/</link>
<pubDate>Mon, 23 Nov 2009 23:06:37 +0000</pubDate>
<dc:creator>mumuland</dc:creator>
<guid>http://mumuland.wordpress.com/2009/11/23/functions/</guid>
<description><![CDATA[This year we are trying the age old method of bribery to get people to book functions. In addition t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://mumuland.wordpress.com/files/2009/11/mg_3741.jpg"><img class="alignleft size-medium wp-image-151" title="_MG_3741" src="http://mumuland.wordpress.com/files/2009/11/mg_3741.jpg?w=300" alt="" width="300" height="200" /></a>This year we are trying the age old method of bribery to get people to book functions. In addition to our very reasonably priced menus and our fantastic sustainable fair.<br />
we are offering a gift boxed bottle of veuve to the person who books any function that chooses beverage package 2 from our function packaeg $39 per person ( chandon NV, Mr Riggs And Cape Mentelle Sem Sauv Blanc). Not ionly are the wines a good deal but you also get to walk home with a bottle of french. Or you could simply add it to the parties festivities.  Download function packages <a href="http://www.mumugrill.com.au/pdfs/menu-function.pdf">Here</a><a href="http://mumuland.wordpress.com/files/2009/11/picture-003.jpg"><img class="alignright size-thumbnail wp-image-153" title="Picture 003" src="http://mumuland.wordpress.com/files/2009/11/picture-003.jpg?w=112" alt="" width="112" height="150" /></a></p>
<p>&#160;</p>
<p>&#160;</p>
<p>P.S we also have a Private dining room which takes up to 24 people for those special functions or private functions. the private dining room has its own stereo, waiter, and bar. perfect for a special birthday, or corporate event.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[November 23, 2009]]></title>
<link>http://plufa09m433.wordpress.com/2009/11/23/november-23-2009/</link>
<pubDate>Mon, 23 Nov 2009 22:19:04 +0000</pubDate>
<dc:creator>pluprofedgar</dc:creator>
<guid>http://plufa09m433.wordpress.com/2009/11/23/november-23-2009/</guid>
<description><![CDATA[Today, we investigated homomorphisms further. Recall that a homomorphism between two groups and is a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Today, we investigated homomorphisms further. Recall that a homomorphism between two groups <img src='http://l.wordpress.com/latex.php?latex=G&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='G' title='G' class='latex' /> and <img src='http://l.wordpress.com/latex.php?latex=G%27&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='G&#039;' title='G&#039;' class='latex' /> is a function <img src='http://l.wordpress.com/latex.php?latex=f%3AG%5Cto+G%27&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f:G\to G&#039;' title='f:G\to G&#039;' class='latex' /> such that<br />
<img src='http://l.wordpress.com/latex.php?latex=f%28ab%29%3Df%28a%29f%28b%29&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(ab)=f(a)f(b)' title='f(ab)=f(a)f(b)' class='latex' /> for all <img src='http://l.wordpress.com/latex.php?latex=a%2Cb%5Cin+G&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='a,b\in G' title='a,b\in G' class='latex' />.</p>
<p>This basically says that the function &#8220;understands the operations of the group&#8221; and maps elements in a way that is compatible with the operations of the respective groups. We saw many examples of homomorphisms, some of which we already knew. For instance:</p>
<ul>
<li><img src='http://l.wordpress.com/latex.php?latex=det%3A+GL_n%28%5Cmathbb%7BR%7D%29%5Cto%5Cmathbb%7BR%7D%5E%2A&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='det: GL_n(\mathbb{R})\to\mathbb{R}^*' title='det: GL_n(\mathbb{R})\to\mathbb{R}^*' class='latex' /></li>
<li><img src='http://l.wordpress.com/latex.php?latex=f%3AS_n%5Cto+%5Cmathbb%7BZ%7D_2&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f:S_n\to \mathbb{Z}_2' title='f:S_n\to \mathbb{Z}_2' class='latex' /> by <img src='http://l.wordpress.com/latex.php?latex=f%28even%29%3D0&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(even)=0' title='f(even)=0' class='latex' /> and <img src='http://l.wordpress.com/latex.php?latex=f%28odd%29%3D1&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(odd)=1' title='f(odd)=1' class='latex' /></li>
<li><img src='http://l.wordpress.com/latex.php?latex=f%3A%5Cmathbb%7BZ%7D%5Cto%5Cmathbb%7BZ%7D&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f:\mathbb{Z}\to\mathbb{Z}' title='f:\mathbb{Z}\to\mathbb{Z}' class='latex' /> by <img src='http://l.wordpress.com/latex.php?latex=f_r%28n%29%3Drn&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f_r(n)=rn' title='f_r(n)=rn' class='latex' /></li>
</ul>
<p>are all homomorphisms between their respective groups. There are many more examples as well, and we will continue to investigate different homomorphisms. </p>
<p>Finally, we also noted that if <img src='http://l.wordpress.com/latex.php?latex=G%2CG%27&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='G,G&#039;' title='G,G&#039;' class='latex' /> are both groups, then there is always a homomorphism between them given by <img src='http://l.wordpress.com/latex.php?latex=f%3AG%5Cto+G%27&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f:G\to G&#039;' title='f:G\to G&#039;' class='latex' /> with <img src='http://l.wordpress.com/latex.php?latex=f%28x%29%3De%27&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(x)=e&#039;' title='f(x)=e&#039;' class='latex' /> where <img src='http://l.wordpress.com/latex.php?latex=e%27%5Cin+G%27&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='e&#039;\in G&#039;' title='e&#039;\in G&#039;' class='latex' /> is the identity element in <img src='http://l.wordpress.com/latex.php?latex=G%27&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='G&#039;' title='G&#039;' class='latex' />. </p>
<p>We noted that homomorphisms are not quite as strong as isomorphisms, but we will show how much information is actually carried through a homomorphism (as opposed to an isomorphism where all the information is carried through).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Crear un salto de página en Word]]></title>
<link>http://tuscursosenvideo.wordpress.com/2009/11/23/crear-un-salto-de-pagina-en-word/</link>
<pubDate>Mon, 23 Nov 2009 00:06:48 +0000</pubDate>
<dc:creator>alcecal</dc:creator>
<guid>http://tuscursosenvideo.wordpress.com/2009/11/23/crear-un-salto-de-pagina-en-word/</guid>
<description><![CDATA[Cuando estamos trabajando en un documento de Word 2003 ó 2007, hemos ingresado texto hasta por ejemp]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Cuando estamos trabajando en un documento de Word 2003 ó 2007, hemos ingresado texto hasta por ejemplo la mitad de la página y necesitamos irnos a una nueva página.</p>
<p>En la mayoría de los casos, presionamos Enter muchas veces hasta llegar a la siguiente página y continuar escribiendo.</p>
<p>Microsoft Word, nos permite crear un salto de página para evitarnos presionar varias veces la tecla Enter.</p>
<p>Para crear un salto de página, presione <strong>Ctrl+Enter</strong>, y continue escribiendo en la nueva página</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Plus ones]]></title>
<link>http://singlethirtysomething.wordpress.com/2009/11/20/plus-ones/</link>
<pubDate>Fri, 20 Nov 2009 08:24:44 +0000</pubDate>
<dc:creator>singlethirtysomething</dc:creator>
<guid>http://singlethirtysomething.wordpress.com/2009/11/20/plus-ones/</guid>
<description><![CDATA[If I&#8217;m not dating anyone, I would always rather go to an event or function on my own, than fin]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If I&#8217;m not dating anyone, I would always rather go to an event or function on my own, than find a suitable rent-a-friend to take as my date. Not just because it leaves me free to flirt with any single guys there, but because I find it stressful to be there with someone who is there for the sake of being my &#8216;plus one&#8217; (note &#8211; I&#8217;m quite happy to go with a boyfriend).</p>
<p>A few years ago my old junior school was celebrating its centenary and a group of us who&#8217;ve been friends for over 25 years decided to take a table at the gala dinner. All the others are married and I thought it might be weird to go on my own, so I asked my friend S if he&#8217;d come along as my date. S and I are 100% platonic &#8211; I love him to bits as a friend, but we&#8217;d last all of 30 seconds as a couple, not to mention that neither of us has had the slightest romantic inclination to the other anyway in the 16 years we&#8217;ve known each other.</p>
<p>We arranged to meet outside the function venue and I was relieved to see he had made an effort to dress nicely (although to his credit, he usually does  &#8211; and no, he is not gay!). But things went downhill from there. He spent the evening either chatting up a single girl who had joined our party at the last minute (he ended up dating her for a couple of weeks) or ignoring everyone, me included, and having an intense text message exchange with one of his friends-with-benefits. It was so bad that when the evening ended, one of my other friends said, &#8216;Should I text message S to say goodbye?&#8217;</p>
<p>I know S well enough to give him a piece of my mind and not have it ruin our friendship (I think it&#8217;s like water off a duck&#8217;s back to him actually!). I was furious &#8211; I&#8217;d asked him to be my date, had paid for his dinner (which was not cheap) and he&#8217;d made no effort to &#8216;accompany&#8217; me or make an effort to be friendly to and interested in the rest of our party (single girl excepted)&#8230; embarassing me instead. I would have far preferred to be there on my own instead of having to worry about my date&#8217;s behaviour!</p>
<p>Perhaps it&#8217;s a sign of the economic times, but I&#8217;ve noticed that it&#8217;s rare now to get an invitation to a function like a wedding and have &#8216;plus one / and partner&#8217; included on the invitation. I&#8217;m quite happy about that &#8211; the pressure of finding someone to go with and the stress of wondering whether he&#8217;ll behave is something I can do without <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PHP Functions 101 - array_push()]]></title>
<link>http://igzactly.wordpress.com/2009/11/19/php-functions-101-array_push/</link>
<pubDate>Fri, 20 Nov 2009 01:45:55 +0000</pubDate>
<dc:creator>ffxfiend</dc:creator>
<guid>http://igzactly.wordpress.com/2009/11/19/php-functions-101-array_push/</guid>
<description><![CDATA[Hello and welcome back for my next installment of PHP Functions 101. This week I&#8217;ll be discuss]]></description>
<content:encoded><![CDATA[Hello and welcome back for my next installment of PHP Functions 101. This week I&#8217;ll be discuss]]></content:encoded>
</item>
<item>
<title><![CDATA[How much do you love your liver? ]]></title>
<link>http://deeboochi.wordpress.com/2009/11/19/how-much-do-you-love-your-liver/</link>
<pubDate>Thu, 19 Nov 2009 17:23:25 +0000</pubDate>
<dc:creator>deeboochi</dc:creator>
<guid>http://deeboochi.wordpress.com/2009/11/19/how-much-do-you-love-your-liver/</guid>
<description><![CDATA[http://docs.google.com/gview?a=v&amp;pid=gmail&amp;attid=0.1&amp;thid=1250d417d3e990a6&amp;mt=applic]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>http://docs.google.com/gview?a=v&#38;pid=gmail&#38;attid=0.1&#38;thid=1250d417d3e990a6&#38;mt=application%2Fvnd.ms-powerpoint&#38;url=http%3A%2F%2Fmail.google.com%2Fmail%2F%3Fui%3D2%26ik%3D0d83c09cfd%26view%3Datt%26th%3D1250d417d3e990a6%26attid%3D0.1%26disp%3Dattd%26zw&#38;sig=AHIEtbR5i17Mh6u10JJUsa-TMS_fJI2DOw</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Exponential Functions]]></title>
<link>http://mathin10mins.wordpress.com/2009/11/18/exponential-functions/</link>
<pubDate>Wed, 18 Nov 2009 02:24:25 +0000</pubDate>
<dc:creator>wrathofmobius</dc:creator>
<guid>http://mathin10mins.wordpress.com/2009/11/18/exponential-functions/</guid>
<description><![CDATA[Exponential Functions You will need Flash Player to see the video.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://voicethread.com/share/722615/">Exponential Functions</a><br />
You will need Flash Player to see the video.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Introduction to Functions ]]></title>
<link>http://hporacle.wordpress.com/2009/11/17/introduction-to-functions/</link>
<pubDate>Tue, 17 Nov 2009 16:00:16 +0000</pubDate>
<dc:creator>Alex</dc:creator>
<guid>http://hporacle.wordpress.com/2009/11/17/introduction-to-functions/</guid>
<description><![CDATA[1.  The following statement represents a multi-row function. True or False? SELECT MAX(salary) FROM ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>1.  The following statement represents a multi-row function. True or False?<br />
SELECT MAX(salary)<br />
FROM employees</p>
<p>True (*)<br />
False</p>
<p>2.  The conversion function TO_CHAR is a single row function. True or False?<br />
True (*)<br />
False</p>
<p>3.  Will the following statement return one row?<br />
SELECT MAX(salary), MIN(Salary), AVG(SALARY)<br />
FROM employees;<br />
No, it is illegal. You cannot use more than one multi-row function in a SELECT statement<br />
Yes, it will return the highest salary, the lowest salary and the average salary from all employees (*)<br />
Yes, it will return the highest salary from each employee<br />
Yes, it will return the average salary from the employees table.</p>
<p>4.  The following statement represents a multi-row function. True or False?<br />
SELECT UPPER(last_name)<br />
FROM employees;<br />
True<br />
False (*)</p>
<p>5.  The function COUNT is a single row function. True or False?<br />
True<br />
False (*)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Javascript: Literal value function parameters]]></title>
<link>http://tobymackenzie.wordpress.com/2009/11/17/javascript-literal-value-function-parameters/</link>
<pubDate>Tue, 17 Nov 2009 12:39:23 +0000</pubDate>
<dc:creator>tobymackenzie</dc:creator>
<guid>http://tobymackenzie.wordpress.com/2009/11/17/javascript-literal-value-function-parameters/</guid>
<description><![CDATA[I&#8217;ve been messing around with Javascript a bit lately, creating an AJAX object just now, doing]]></description>
<content:encoded><![CDATA[I&#8217;ve been messing around with Javascript a bit lately, creating an AJAX object just now, doing]]></content:encoded>
</item>
<item>
<title><![CDATA[Math Kuta: Functions]]></title>
<link>http://msyuen.wordpress.com/2009/11/16/math-kuta-functions/</link>
<pubDate>Mon, 16 Nov 2009 19:41:19 +0000</pubDate>
<dc:creator>msyuen</dc:creator>
<guid>http://msyuen.wordpress.com/2009/11/16/math-kuta-functions/</guid>
<description><![CDATA[8.1 IA2 Evaluating Functions 8.2 IA2 Function Inverses 8.3 IA2 Function Operations]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>8.1 <a href="http://msyuen.wordpress.com/files/2009/11/ia2-evaluating-functions.pdf">IA2 Evaluating Functions</a></p>
<p>8.2 <a href="http://msyuen.wordpress.com/files/2009/11/ia2-function-inverses.pdf">IA2 Function Inverses</a></p>
<p>8.3 <a href="http://msyuen.wordpress.com/files/2009/11/ia2-function-operations.pdf">IA2 Function Operations</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ชีวเคมีขั้นสูงของหน้าที่ของเซลล์]]></title>
<link>http://sclaimon.wordpress.com/2009/11/16/%e0%b8%8a%e0%b8%b5%e0%b8%a7%e0%b9%80%e0%b8%84%e0%b8%a1%e0%b8%b5%e0%b8%82%e0%b8%b1%e0%b9%89%e0%b8%99%e0%b8%aa%e0%b8%b9%e0%b8%87%e0%b8%82%e0%b8%ad%e0%b8%87%e0%b8%ab%e0%b8%99%e0%b9%89%e0%b8%b2%e0%b8%97/</link>
<pubDate>Mon, 16 Nov 2009 01:44:14 +0000</pubDate>
<dc:creator>SoClaimon</dc:creator>
<guid>http://sclaimon.wordpress.com/2009/11/16/%e0%b8%8a%e0%b8%b5%e0%b8%a7%e0%b9%80%e0%b8%84%e0%b8%a1%e0%b8%b5%e0%b8%82%e0%b8%b1%e0%b9%89%e0%b8%99%e0%b8%aa%e0%b8%b9%e0%b8%87%e0%b8%82%e0%b8%ad%e0%b8%87%e0%b8%ab%e0%b8%99%e0%b9%89%e0%b8%b2%e0%b8%97/</guid>
<description><![CDATA[3304706    ชีวเคมีขั้นสูงของหน้าที่ของเซลล์    Advanced Biochemistry Of Cellular Functions การศึกษาข]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>3304706    ชีวเคมีขั้นสูงของหน้าที่ของเซลล์    Advanced Biochemistry Of Cellular Functions</p>
<p>การศึกษาขั้นสูงในโครงสร้างของเซลล์และหน่วยย่อย สารพันธุกรรม ดีเอนเอ และอาร์เอนเอ การแสดงออกของสารพันธุกรรม พันธุวิศวกรรม กระบวนการต่างๆ ทางชีวเคมีการทำหน้าที่ของเซลล์ แหล่งสะสมเมตาบอลิกและการหมุนเวียน ตัวรับและการสื่อสารของเซลล์ การขนส่งสารผ่านเยื่อหุ้มเซลล์ ชีวสังเคราะห์ของสารที่ออกฤทธิ์ทางเภสัชวิทยาภายในเซลล์</p>
<p>(Advanced study in cell structure and compartments; DNA and RNA as genetic material; gene expression; genetic engineering; biochemistry and of cellular functions; metabolic pools and turnover; receptors and signal transduction; transport across cell membrane; biosynthesis of pharmacological active substances in cells.)</p>
<p>(3304706 จุฬาลงกรณ์มหาวิทยาลัย)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Problem #9]]></title>
<link>http://mathproblog.wordpress.com/2009/11/15/problem-9/</link>
<pubDate>Sun, 15 Nov 2009 21:43:56 +0000</pubDate>
<dc:creator>mathteamcoach</dc:creator>
<guid>http://mathproblog.wordpress.com/2009/11/15/problem-9/</guid>
<description><![CDATA[The function is a linear function that satisfies the equation .  Find an expression for .]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The function <img src='http://l.wordpress.com/latex.php?latex=f%28x%29&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(x)' title='f(x)' class='latex' /> is a linear function that satisfies the equation <img src='http://l.wordpress.com/latex.php?latex=f%281%2Bx%29-3f%28x%29%3D2x&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(1+x)-3f(x)=2x' title='f(1+x)-3f(x)=2x' class='latex' /> .  Find an expression for <img src='http://l.wordpress.com/latex.php?latex=f%28x%29&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(x)' title='f(x)' class='latex' />.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[GeoGebra Tutorial 4 - Graphs and Sliders]]></title>
<link>http://math4allages.wordpress.com/2009/11/13/geogebra-tutorial-4-graphs-and-sliders/</link>
<pubDate>Fri, 13 Nov 2009 06:40:42 +0000</pubDate>
<dc:creator>Guillermo Bautista</dc:creator>
<guid>http://math4allages.wordpress.com/2009/11/13/geogebra-tutorial-4-graphs-and-sliders/</guid>
<description><![CDATA[GeoGebra is capable of graphing a variety of functions as well as computing for areas under a curve.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://www.geogebra.org/cms/" target="_blank">GeoGebra</a> is capable of graphing a variety of functions as well as computing for areas under a curve.  The screen shot below is an example of several graphs plotted in GeoGebra.</p>
<div id="attachment_353" class="wp-caption aligncenter" style="width: 549px"><img class="size-full wp-image-353 " title="samplegraphpng" src="http://math4allages.wordpress.com/files/2009/11/samplegraphpng1.png" alt="samplegraphpng" width="539" height="293" /><p class="wp-caption-text">Figure 1 - Graphs created with GeoGebra</p></div>
<p style="text-align:left;">In this tutorial, we are going to use GeoGebra to investigate the effects of parameters of functions to its graph. Unlike in our previous activities, this time we are going to use the A<em>lgebra window </em>and the coordinate axes.  First, we are going to investigate the graph of <img src='http://l.wordpress.com/latex.php?latex=y+%3D+mx&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = mx' title='y = mx' class='latex' /> by typing equations in the input field, then later, we are going to use a slider. If you want to follow this tutorial step-by-step, the you can open the <a href="http://gpbautista1.webs.com/geogebra/GeoGebra_Window.html" target="_blank">GeoGebra window</a> in your browser. The output of this tutorial can be viewed <a href="http://gpbautista1.webs.com/tutorial4/Linear_Function.html" target="_blank">here</a>.</p>
<p><strong><span style="color:#0000ff;">Update (Nov 24, 2009):</span></strong> I have also created another Slider article entitled <a href="http://math4allages.wordpress.com/2009/11/25/geogebra-tutorial-8-learning-how-to-use-the-geogebra-slider-control-in-4-steps/" target="_blank">Graphs and Sliders Part 2.</a></p>
<p><strong>Graphing Functions</strong></p>
<ol>
<li>Open GeoGebra. To graph <img src='http://l.wordpress.com/latex.php?latex=y+%3D+2x&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = 2x' title='y = 2x' class='latex' />, type <strong>y = 2x</strong> in the input field. (The input field is the text box with the label <em>Input</em> located at the bottom of your GeoGebra window.) Press the <strong>ENTER</strong> key on your keyboard.</li>
<li>Type the following equations: <img src='http://l.wordpress.com/latex.php?latex=y+%3D+3x&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = 3x' title='y = 3x' class='latex' />, <img src='http://l.wordpress.com/latex.php?latex=y+%3D+4x&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = 4x' title='y = 4x' class='latex' /> and, <img src='http://l.wordpress.com/latex.php?latex=y+%3D+-8x&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = -8x' title='y = -8x' class='latex' /> and press the enter key after each equation.</li>
<li>Type more equations of the form <img src='http://l.wordpress.com/latex.php?latex=y+%3D+mx&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = mx' title='y = mx' class='latex' /> where m is any real number.</li>
<li>How does the value of <img src='http://l.wordpress.com/latex.php?latex=m&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='m' title='m' class='latex' />affect the appearance of the graph of the function <img src='http://l.wordpress.com/latex.php?latex=y+%3D+mx&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = mx' title='y = mx' class='latex' />?</li>
</ol>
<p><strong>Using Sliders</strong></p>
<p>To avoid typing over and over again for varying values of parameters <img src='http://l.wordpress.com/latex.php?latex=m&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='m' title='m' class='latex' />, we will use the slider control.  A slider is a visual representation of a number. This time, we will also add the parameter <em>b</em>. This means that we will explore the graph of the function of <img src='http://l.wordpress.com/latex.php?latex=y+%3D+mx+%2B+b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = mx + b' title='y = mx + b' class='latex' />, where <img src='http://l.wordpress.com/latex.php?latex=m&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='m' title='m' class='latex' /> and<img src='http://l.wordpress.com/latex.php?latex=b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='b' title='b' class='latex' /> are real numbers.</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="73" valign="top"></td>
<td width="565" valign="top">1.) Open the <a href="http://gpbautista1.webs.com/geogebra/GeoGebra_Window.html" target="_blank">Geogebra window</a>.
<p>&#160;</p>
</td>
</tr>
<tr>
<td width="73" valign="top"><img class="aligncenter size-full wp-image-356" title="sliderpng" src="http://math4allages.wordpress.com/files/2009/11/sliderpng.png" alt="sliderpng" width="34" height="33" /></td>
<td width="565" valign="top">2.) Select   the <em>Slider</em> control and click   anywhere on the drawing pad do display the <em>Slider dialog box.</em><em><br />
</em></td>
</tr>
<tr>
<td width="73" valign="top"></td>
<td width="565" valign="top">3.) In   the <em>Slider </em>dialog box, change the   slider’s name to <em>m</em>, change the   interval to <img src='http://l.wordpress.com/latex.php?latex=-10&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='-10' title='-10' class='latex' /> to <img src='http://l.wordpress.com/latex.php?latex=10&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='10' title='10' class='latex' /> as shown below.
<p>&#160;</p>
<div id="attachment_348" class="wp-caption aligncenter" style="width: 344px"><img class="size-full wp-image-348 " title="slider" src="http://math4allages.wordpress.com/files/2009/11/slider.png" alt="slider" width="334" height="251" /><p class="wp-caption-text">Figure 2 - The Slider Dialog Box</p></div>
<p>Leave the other values as is and click   the<strong> Apply</strong> button to finish.</td>
</tr>
<tr>
<td width="73" valign="top"><img class="aligncenter size-full wp-image-349" title="movepng" src="http://math4allages.wordpress.com/files/2009/11/movepng5.png" alt="movepng" width="34" height="33" /></td>
<td width="565" valign="top">4<em>.) </em>Adjust the position of your slider   if necessary. <strong>Move</strong> the small black circle on your slider. What do you   observe?
<p>&#160;</p>
</td>
</tr>
<tr>
<td width="73" valign="top"></td>
<td width="565" valign="top">5.) To   graph the function <img src='http://l.wordpress.com/latex.php?latex=y+%3D+mx&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = mx' title='y = mx' class='latex' />,  type<strong> y = m*x </strong>in the Input box.</td>
</tr>
<tr>
<td width="73" valign="top">
<p style="text-align:center;"><img title="movepng" src="http://math4allages.wordpress.com/files/2009/11/movepng5.png" alt="movepng" width="34" height="33" /></p>
</td>
<td width="565" valign="top">6.) Now,   <strong>move</strong> the small circle on your slider. What do you observe?</td>
</tr>
<tr>
<td width="73" valign="top"></td>
<td width="565" valign="top">7.) Now,   create a new slider and name it <img src='http://l.wordpress.com/latex.php?latex=b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='b' title='b' class='latex' />. Set the interval to <img src='http://l.wordpress.com/latex.php?latex=-10&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='-10' title='-10' class='latex' /> and <img src='http://l.wordpress.com/latex.php?latex=10&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='10' title='10' class='latex' /> leaving the   other values as is.
<p>&#160;</p>
</td>
</tr>
<tr>
<td width="73" valign="top"></td>
<td width="565" valign="top">8.) To   change the function to <img src='http://l.wordpress.com/latex.php?latex=y+%3D+mx+%2B+b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = mx + b' title='y = mx + b' class='latex' />, right click the graph, click <strong>Redefine</strong> from the context menu, and type<strong> y = m*x</strong> <strong>+ b.</strong><strong><br />
</strong></td>
</tr>
<tr>
<td width="73" valign="top">
<p style="text-align:center;"><img title="movepng" src="http://math4allages.wordpress.com/files/2009/11/movepng5.png" alt="movepng" width="34" height="33" /></p>
</td>
<td width="565" valign="top">9.) Now,   move your <img src='http://l.wordpress.com/latex.php?latex=b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='b' title='b' class='latex' /> slider. What do you   observe?</td>
</tr>
<tr>
<td width="73" valign="top"></td>
<td width="565" valign="top">10. ) How does the value of <img src='http://l.wordpress.com/latex.php?latex=b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='b' title='b' class='latex' /> affect the appearance of the graph   of the function <img src='http://l.wordpress.com/latex.php?latex=y+%3D+mx+%2B+b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = mx + b' title='y = mx + b' class='latex' />?
<p>&#160;</p>
</td>
</tr>
<tr>
<td width="73" valign="top"></td>
<td width="565" valign="top">11.)  Graph   the function <img src='http://l.wordpress.com/latex.php?latex=y+%3D+ax%5E2+%2B+b&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y = ax^2 + b' title='y = ax^2 + b' class='latex' />.   Explain the effects of the parameters a and b to the graph of the function.</td>
</tr>
</tbody>
</table>
<p><strong>Notes:</strong></p>
<ol>
<li>The ^ symbol is used for exponentiation in GeoGebra. Hence, we write <img src='http://l.wordpress.com/latex.php?latex=ax%5E2+%2B+c&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='ax^2 + c' title='ax^2 + c' class='latex' /> as a*x^2 + c.</li>
<li>Instead of using <img src='http://l.wordpress.com/latex.php?latex=y&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='y' title='y' class='latex' /> in writing equations of functions, you can also use <img src='http://l.wordpress.com/latex.php?latex=f%28x%29&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f(x)' title='f(x)' class='latex' /> for the function <img src='http://l.wordpress.com/latex.php?latex=f&#038;bg=ffffff&#038;fg=000000&#038;s=0' alt='f' title='f' class='latex' />.</li>
</ol>
</div>]]></content:encoded>
</item>

</channel>
</rss>
