<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-9114548649481596244</id><updated>2024-09-04T18:23:59.146-07:00</updated><title type='text'>Numerical Method Project</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://numericmagic.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default'/><link rel='alternate' type='text/html' href='http://numericmagic.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Numerical Method Project</name><uri>http://www.blogger.com/profile/09476883888469628311</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilTIbnjbqfKoaKdcg08k2RBTw5Kik7kKXQbk3CfIsxC6aGibeFWOTuHzDFOXO7kN7wkxlcRoYOFnYCg_SEbE3dr4H0RpJ6QT-HjYJCsgWGV9r7N9dB1AMdLDF-9st6388/s220/mathematics1.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9114548649481596244.post-7597772169441023899</id><published>2009-03-22T23:54:00.000-07:00</published><updated>2009-03-23T00:06:01.086-07:00</updated><title type='text'>Download Source Code Eliminasi Gauss Jordan (Pivoting)</title><content type='html'>Download file Source Code (Ekstensi .C) &lt;a href=&quot;   http://www.ziddu.com/download/3972306/eliminasigausspivot.rar.html&quot;&gt;di sini&lt;/a&gt;... Filenya cuma 1 KB&lt;br /&gt;&lt;br /&gt;selamat Mendownload&lt;br /&gt;&lt;br /&gt;Panji Erick Stenly</content><link rel='replies' type='application/atom+xml' href='http://numericmagic.blogspot.com/feeds/7597772169441023899/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://numericmagic.blogspot.com/2009/03/download-source-code-eliminasi-gauss.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/7597772169441023899'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/7597772169441023899'/><link rel='alternate' type='text/html' href='http://numericmagic.blogspot.com/2009/03/download-source-code-eliminasi-gauss.html' title='Download Source Code Eliminasi Gauss Jordan (Pivoting)'/><author><name>Numerical Method Project</name><uri>http://www.blogger.com/profile/09476883888469628311</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilTIbnjbqfKoaKdcg08k2RBTw5Kik7kKXQbk3CfIsxC6aGibeFWOTuHzDFOXO7kN7wkxlcRoYOFnYCg_SEbE3dr4H0RpJ6QT-HjYJCsgWGV9r7N9dB1AMdLDF-9st6388/s220/mathematics1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9114548649481596244.post-7711038439443924224</id><published>2009-03-19T20:46:00.000-07:00</published><updated>2009-03-22T23:51:52.858-07:00</updated><title type='text'>Code Program 4.3 (Pivoting)</title><content type='html'>/* *************************************** */&lt;br /&gt;/* File : pivoting.cpp */&lt;br /&gt;/* Author : Group 9 Numerical Method Class */&lt;br /&gt;/* Date : 1 oktober 2008 */&lt;br /&gt;/* Deskripsi : Program Eliminasi Gauss yang diperbaiki (dengan tataancang Pivoting)*/&lt;br /&gt;/* *************************************** */&lt;br /&gt;&lt;br /&gt;#include &lt;iostream.h&gt;&lt;br /&gt;#include &lt;conio.h&gt;&lt;br /&gt;#include &lt;iomanip.h&gt;&lt;br /&gt;float a[11][11];&lt;br /&gt;float x[4];&lt;br /&gt;&lt;br /&gt;main()&lt;br /&gt;{&lt;br /&gt;  int i, j, n, m, c, b, p, q, L, k;&lt;br /&gt;  float pivot, pivot1, pivot2, total, suku, temp;&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;program mencari akar-akar x1, x2,.... xn&quot;;&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;dengan menggunakan metode eliminasi gauss (tata ancang pivoting)&quot;; &lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot; _               _  &quot;;&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;|  4  7  1  | 9   | &quot;;&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;|  8  3  9  | 3   | &quot;;&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;|_ 2  1  2  | 4  _| &quot;;&lt;br /&gt;  cout&lt;&lt;endl;&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;input baris :&quot;;  cin&gt;&gt;n;&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;input kolom :&quot;;  cin&gt;&gt;m;&lt;br /&gt; ///////////////////////////////////////////////////////////////&lt;br /&gt;  cout&lt;&lt;endl&lt;&lt;&quot;mulai isi matrix anda&quot;&lt;&lt;endl;&lt;br /&gt;  for(i=1; i&lt;=n; i++)&lt;br /&gt;  {&lt;br /&gt;    for(j=1; j&lt;=m; j++)&lt;br /&gt;    {&lt;br /&gt;     cout&lt;&lt;&quot; &quot;; cin&gt;&gt;a[i][j];&lt;br /&gt;    }&lt;br /&gt;   cout&lt;&lt;endl;&lt;br /&gt;  }&lt;br /&gt; /////////////////////////////////////////////////////////////&lt;br /&gt;  for(i=1;i&lt;=(n-1); i++)&lt;br /&gt;  {&lt;br /&gt;    j=i;&lt;br /&gt;    pivot1 = a[i][j];  c=i;                     //simpan state pivot1 di c;&lt;br /&gt;    if(pivot1 &lt; 0){pivot1 = pivot1 * -1;}     // cari harga mutlak pivot1&lt;br /&gt;&lt;br /&gt;    for(b=(i+1); b&lt;=n; b++)&lt;br /&gt;    {&lt;br /&gt;     pivot2= a[b][j];&lt;br /&gt;     if(pivot2 &lt; 0){ pivot2 = pivot2 * -1;}      //cari harga mutlak pivot2&lt;br /&gt;     if(pivot2 &gt; pivot1){ pivot1 = pivot2; c=b;}   //simpan state pivot2 di c;&lt;br /&gt;    }&lt;br /&gt;  if(c==i) goto lompat;&lt;br /&gt;    for(j=i; j&lt;=m; j++)&lt;br /&gt;    {&lt;br /&gt;     temp = a[i][j];&lt;br /&gt;            a[i][j] = a[c][j];&lt;br /&gt;                      a[c][j] = temp;&lt;br /&gt;     }&lt;br /&gt; lompat:&lt;br /&gt;     j=i;&lt;br /&gt;     pivot = a[i][j];&lt;br /&gt;     for(k=i; k&lt;=(n-1); k++)&lt;br /&gt;     {&lt;br /&gt;        temp = a[k+1][j];&lt;br /&gt;      for(L=i; L&lt;=m; L++)&lt;br /&gt;      {&lt;br /&gt;        a[k+1][L] = a[k+1][L] - temp /pivot * a[i][L];&lt;br /&gt;      }&lt;br /&gt;     }&lt;br /&gt;  }&lt;br /&gt;  ////// display&lt;br /&gt;  for(i=1;i&lt;=n;i++)&lt;br /&gt;  {for(j=1;j&lt;=m;j++)&lt;br /&gt;   {&lt;br /&gt;     cout&lt;&lt;setw(20)&lt;&lt;a[i][j];&lt;br /&gt;   }&lt;br /&gt;   cout&lt;&lt;endl&lt;&lt;endl&lt;&lt;endl&lt;&lt;endl;&lt;br /&gt;  }&lt;br /&gt;///////////// penyulihan mundur&lt;br /&gt;     if(a[n][n]==0) {cout&lt;&lt;endl&lt;&lt;&quot; persamaan anda tidak bisa diselesaikan !!!&quot;;&lt;br /&gt;                     cout&lt;&lt;endl&lt;&lt;&quot; karena  a[&quot;&lt;&lt;n&lt;&lt;&quot;][&quot;&lt;&lt;n&lt;&lt;&quot;] = &quot;&lt;&lt; a[n][n];&lt;br /&gt;                     goto nume;&lt;br /&gt;                    }&lt;br /&gt;    x[n] = a[n][m] / a[n][m-1];&lt;br /&gt;    for( p=(n-1); p&gt;=1; p--)&lt;br /&gt;    {&lt;br /&gt;     total=0;&lt;br /&gt;     for( q=(m-1); q &gt; p; q--)&lt;br /&gt;     {&lt;br /&gt;      suku = a[p][q] * x[q];&lt;br /&gt;      total = total + suku;    //total suku ruas kiri&lt;br /&gt;     }&lt;br /&gt;    x[p] = ( a[p][m] - total ) / a[p][p];&lt;br /&gt;    }&lt;br /&gt;   for(i=1; i&lt;=n; i++){ cout&lt;&lt;endl&lt;&lt;&quot;x[&quot;&lt;&lt;i&lt;&lt;&quot;] = &quot;&lt;&lt; x[i];}&lt;br /&gt;nume:&lt;br /&gt;getch();&lt;br /&gt;}&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://numericmagic.blogspot.com/feeds/7711038439443924224/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://numericmagic.blogspot.com/2009/03/code-program-43-pivoting.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/7711038439443924224'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/7711038439443924224'/><link rel='alternate' type='text/html' href='http://numericmagic.blogspot.com/2009/03/code-program-43-pivoting.html' title='Code Program 4.3 (Pivoting)'/><author><name>Numerical Method Project</name><uri>http://www.blogger.com/profile/09476883888469628311</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilTIbnjbqfKoaKdcg08k2RBTw5Kik7kKXQbk3CfIsxC6aGibeFWOTuHzDFOXO7kN7wkxlcRoYOFnYCg_SEbE3dr4H0RpJ6QT-HjYJCsgWGV9r7N9dB1AMdLDF-9st6388/s220/mathematics1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9114548649481596244.post-2532236167375372457</id><published>2009-03-08T20:31:00.001-07:00</published><updated>2009-03-08T20:33:24.095-07:00</updated><title type='text'>The beauty of mathematics</title><content type='html'>&lt;p class=&quot;MsoNormal&quot;&gt;Salaam and Greetings of Peace:&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot;&gt;Here is an interesting and lovely way to look at the beauty of mathematics, and of God, the sum of all wonders.&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;1 x 8 + 1 = 9&lt;br /&gt;12 x 8 + 2 = 98&lt;br /&gt;123 x 8 + 3 = 987&lt;br /&gt;1234 x 8 + 4 = 9876&lt;br /&gt;12345 x 8 + 5 = 987&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt; 65&lt;br /&gt;123456 x 8 + 6 = 987654&lt;br /&gt;1234567 x 8 + 7 = 9876543&lt;br /&gt;12345678 x 8 + 8 = 98765432&lt;br /&gt;123456789 x 8 + 9 = 987654321&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;br /&gt;1 x 9 + 2 = 11&lt;br /&gt;12 x 9 + 3 = 111&lt;br /&gt;123 x 9 + 4 = 1111&lt;br /&gt;1234 x 9 + 5 = 11111&lt;br /&gt;12345 x 9 + 6 = 111111&lt;br /&gt;123456 x 9 + 7 = 1111111&lt;br /&gt;1234567 x 9 + 8 = 11111111&lt;br /&gt;12345678 x 9 + 9 = 111111111&lt;br /&gt;123456789 x 9 +10= 1111111111&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;br /&gt;9 x 9 + 7 = 88&lt;br /&gt;98 x 9 + 6 = 888&lt;br /&gt;987 x 9 + 5 = 8888&lt;br /&gt;9876 x 9 + 4 = 88888&lt;br /&gt;98765 x 9 + 3 = 888888&lt;br /&gt;987654 x 9 + 2 = 8888888&lt;br /&gt;9876543 x 9 + 1 = 88888888&lt;br /&gt;98765432 x 9 + 0 = 888888888&lt;/span&gt;&lt;/span&gt; &lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Brilliant, isn’t it?&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;div&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;And look at this symmetry:&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;  &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;1 x 1 = 1&lt;br /&gt;11 x 11 = 121&lt;br /&gt;111 x 111 = 12321&lt;br /&gt;1111 x 1111 = 1234321&lt;br /&gt;11111 x 11111 = 123454321&lt;br /&gt;111111 x 111111 = 12345654321&lt;br /&gt;1111111 x 1111111 = 1234567654321&lt;br /&gt;11111111 x 11111111 = 123456787654321&lt;br /&gt;111111111 x 111111111 = 12345678987654321&lt;/span&gt; &lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Now, take a look at this…&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;101%&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;From a strictly mathematical viewpoint:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;What Equals 100%?&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;What does it mean to give MORE than 100%?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Ever wonder about those people who say they are giving more than 100%?&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;We have all been in situations where someone wants you to&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;GIVE OVER 100%.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;How about ACHIEVING 101%?&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;What equals 100% in life?&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Here’s a little mathematical formula that might help&lt;/span&gt;&lt;/p&gt; &lt;p class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot; align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Answer these questions:&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;If:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;A B C D E F G H I J K L M N O P Q R S T U V W X Y Z&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Is represented as:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26.&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;If:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;H-A-R-D-W-O-R- K&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;8+1+18+4+23+15+18+11 = 98%&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;And:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;K-N-O-W-L-E-D-G-E&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;11+14+15+23+12+5+4+7+5 = 96%&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;But:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;A-T-T-I-T-U-D-E&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;1+20+20+9+20+21+4+5 = 100%&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;THEN, look how far the love of God will take you:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;L-O-V-E-O-F-G-O-D&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;12+15+22+5+15+6+7+15+4 = 101%&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;Therefore, one can conclude with mathematical certainty that:&lt;/span&gt;&lt;/p&gt; &lt;p align=&quot;center&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;While Hard Work and Knowledge will get you close, and Attitude will&lt;br /&gt;Get you there, It’s the Love of God that will put you over the top!&lt;/span&gt;&lt;/p&gt;&lt;p align=&quot;center&quot;&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: rgb(51, 102, 255);&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;Taken From :&lt;/span&gt;&lt;a style=&quot;color: rgb(0, 0, 0);&quot; href=&quot;http://darvish.wordpress.com/2008/03/16/the-beauty-of-mathematics-and-the-love-of-god/&quot;&gt; http://darvish.wordpress.com/&lt;/a&gt;&lt;br /&gt;&lt;/span&gt; &lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://numericmagic.blogspot.com/feeds/2532236167375372457/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://numericmagic.blogspot.com/2009/03/beauty-of-mathematics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/2532236167375372457'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/2532236167375372457'/><link rel='alternate' type='text/html' href='http://numericmagic.blogspot.com/2009/03/beauty-of-mathematics.html' title='The beauty of mathematics'/><author><name>Numerical Method Project</name><uri>http://www.blogger.com/profile/09476883888469628311</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilTIbnjbqfKoaKdcg08k2RBTw5Kik7kKXQbk3CfIsxC6aGibeFWOTuHzDFOXO7kN7wkxlcRoYOFnYCg_SEbE3dr4H0RpJ6QT-HjYJCsgWGV9r7N9dB1AMdLDF-9st6388/s220/mathematics1.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9114548649481596244.post-5506243718262203494</id><published>2009-02-28T19:51:00.000-08:00</published><updated>2009-02-28T20:03:06.834-08:00</updated><title type='text'>Postingan Pertama</title><content type='html'>Blog ini akan berisi project Numerical Method</content><link rel='replies' type='application/atom+xml' href='http://numericmagic.blogspot.com/feeds/5506243718262203494/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://numericmagic.blogspot.com/2009/02/postingan-pertama.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/5506243718262203494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9114548649481596244/posts/default/5506243718262203494'/><link rel='alternate' type='text/html' href='http://numericmagic.blogspot.com/2009/02/postingan-pertama.html' title='Postingan Pertama'/><author><name>Numerical Method Project</name><uri>http://www.blogger.com/profile/09476883888469628311</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEilTIbnjbqfKoaKdcg08k2RBTw5Kik7kKXQbk3CfIsxC6aGibeFWOTuHzDFOXO7kN7wkxlcRoYOFnYCg_SEbE3dr4H0RpJ6QT-HjYJCsgWGV9r7N9dB1AMdLDF-9st6388/s220/mathematics1.jpg'/></author><thr:total>0</thr:total></entry></feed>