<?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: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-14156937</id><updated>2011-07-14T17:40:59.620-07:00</updated><title type='text'>basically maths n physics</title><subtitle type='html'>we are looking at getting down to the basic level understanding everything physically n geometrically.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-14156937.post-113969042881636681</id><published>2006-02-11T12:34:00.000-08:00</published><updated>2006-02-11T12:43:03.770-08:00</updated><title type='text'>playing with ellipse</title><content type='html'>i was trying to plot an ellipse on matlab figure window for one class homework and that  problem turned out to be an interesting one..&lt;br /&gt;first i started off with a basic ellipse equation and it involved little challenge.. the main task came when i was supposed to plot a tilted ellipse.. here is the code.. try it and have fun...&lt;br /&gt;&lt;br /&gt;---------------------------------------------------------------------------------------&lt;br /&gt;function [xout,yout1,yout2] = my_ellipse(x1,y1,a,b,c,rot)&lt;br /&gt;%&lt;br /&gt;%function [xout,yout1,yout2] = my_ellipse(x1,y1,a,b,c,rot)&lt;br /&gt;%this one draws a ellipse.&lt;br /&gt;%&lt;br /&gt;% Input values:&lt;br /&gt;% Centre = (x1,y1)&lt;br /&gt;% semimajor axis = a&lt;br /&gt;% semiminor axis = b&lt;br /&gt;%&lt;br /&gt;%                                                 2  &lt;br /&gt;% covariance XY = c&lt;br /&gt;%&lt;br /&gt;% rot: 1 for clockwise roatition&lt;br /&gt;%      -1 for anti clockwise rotation.&lt;br /&gt;%&lt;br /&gt;% Equation of the ellipse is written as&lt;br /&gt;%                         2                   2&lt;br /&gt;%         (x-x1)   (y-y1)         (x-x1)(y-y1)&lt;br /&gt;%         ------ + -----     -   ------------ = 1&lt;br /&gt;%                    2                2                              2&lt;br /&gt;%                a                 b                    c&lt;br /&gt;%  &lt;br /&gt;%&lt;br /&gt;%&lt;br /&gt;% which uses&lt;br /&gt;%            2                2      &lt;br /&gt;% p(X) + q(Y) - r(XY) - s = 0;&lt;br /&gt;% where X = x-x1&lt;br /&gt;%       Y = y-y1&lt;br /&gt;%&lt;br /&gt;% plot : use the following&lt;br /&gt;% plot(xout,yout1);hold on; plot(xout,yout2);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;s = 1;&lt;br /&gt;p = s/a^2;&lt;br /&gt;q = s/b^2;&lt;br /&gt;if nargin &lt;6 rot =" 1;" r =" 0;" r =" rot*s/c^2;" lim =" sqrt(s/abs(p" x =" [-lim:2*lim/100:lim];" y =" b*sqrt(1" y1 =" (r*X" y2 =" (r*X" xout =" X+x1;" yout1 =" Y1+y1;" yout2 =" Y2+y1;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/648/1137/1600/1.0.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://photos1.blogger.com/blogger/648/1137/320/1.0.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-113969042881636681?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/113969042881636681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=113969042881636681&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/113969042881636681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/113969042881636681'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2006/02/playing-with-ellipse.html' title='playing with ellipse'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14156937.post-113246684839342383</id><published>2005-11-19T21:58:00.000-08:00</published><updated>2005-11-19T22:07:43.236-08:00</updated><title type='text'>Buffon's Needle Problem</title><content type='html'>I've come across this in my first probability class. The problem goes that there are a set of parallel lines spaced at "2b" distance apart and there is a needle of length "2a". Assuming a &lt; b.The needle is dropped randomly and the problem is to find the probability that the needle crosses the line. Ans: (2a)/(b*pi)&lt;br /&gt;&lt;br /&gt;There is an interesting side to this problem. Apart from probability this problem links up geometry and by this formula we can actually derive the value for pi. &lt;br /&gt;pi = 2a/(b*P) &lt;br /&gt;where P = measured probability. Let us use the relative frequency method to calculate P. Assume N needles are thrown once(which is equivalent to saying one needle is thrown N times.) and say Nr of them cross the lines. Hence P = Nr/N.&lt;br /&gt;&lt;br /&gt;It is interesting to know that for a small number like N = 100, the calculated value of pi deviates from the standard value for pi by 1%....&lt;br /&gt;&lt;br /&gt;I was really astonished to see something(the experiment) which is probabilistic to actually use to measure something deterministic(pi) :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-113246684839342383?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/113246684839342383/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=113246684839342383&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/113246684839342383'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/113246684839342383'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2005/11/buffons-needle-problem.html' title='Buffon&apos;s Needle Problem'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14156937.post-112681807622978402</id><published>2005-09-15T13:41:00.000-07:00</published><updated>2005-09-15T14:01:16.236-07:00</updated><title type='text'>why did we create numbers</title><content type='html'>I mugged up tables in school without actually knowing what they meant. I did the mathematical operations on numbers without actually knowing what I was doing. &lt;br /&gt;&lt;br /&gt;Lets say why we had to create negative numbers?&lt;br /&gt;I could relate the answer to the daily problem in trading world. Person A borrows X units of money from B and so person A has -X money. And hence all the math in the money trade becomes easier.&lt;br /&gt;&lt;br /&gt;Why did we have to create "i" - the complex number?&lt;br /&gt;X^2 - 1 = 0 is a second order equation and it has clearly two roots&lt;br /&gt;X = 1 and X = -1..&lt;br /&gt;&lt;br /&gt;but how about X^2+1 = 0 ... we come up with a number "i" and say X = +i and X = -i are the two roots. &lt;br /&gt;&lt;br /&gt;If we get back to the conceptual level it is basically X =1 and X = -1 on the imaginary line. Why did we have to have an imaginary line. It is because we would like to describe two systems (one corresponding to real axis and other to imaginary axis) at the same time.&lt;br /&gt;That is when we write e^(jx) = cos(x) + i sin (x)... we would like to analyse cos(x) and sin(x) at the same time. in other words we would like to analyze the property of a general sinusoid signal measuring its phase from a cosine of same frequency and sine of the same frequency. [remember any sinusoid can be perfectly reconstructed if we know the amplitude, frequency and phase]&lt;br /&gt;&lt;br /&gt;*********************************&lt;br /&gt;more on the number "e" in the future posts.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-112681807622978402?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/112681807622978402/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=112681807622978402&amp;isPopup=true' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112681807622978402'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112681807622978402'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2005/09/why-did-we-create-numbers.html' title='why did we create numbers'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14156937.post-112620276597713577</id><published>2005-09-08T11:02:00.000-07:00</published><updated>2005-09-08T11:16:09.493-07:00</updated><title type='text'>142857</title><content type='html'>this is a fundoo number. thx to sms forwards i got my eyes on this. check out the interesting stuff about this number below&lt;br /&gt;&lt;br /&gt;1 × 142,857 = 142,857&lt;br /&gt;2 × 142,857 = 285,714&lt;br /&gt;3 × 142,857 = 428,571&lt;br /&gt;4 × 142,857 = 571,428&lt;br /&gt;5 × 142,857 = 714,285&lt;br /&gt;6 × 142,857 = 857,142&lt;br /&gt;&lt;br /&gt;the resulting numbers are anagrams of the initial number.&lt;br /&gt;&lt;br /&gt;it is derived from 1⁄7 = 0 . 142857 142857 14... &lt;br /&gt;&lt;br /&gt;can we build any relation?&lt;br /&gt;are there any more similar numbers?&lt;br /&gt;does it have any physical significance to the universe?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-112620276597713577?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/112620276597713577/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=112620276597713577&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112620276597713577'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112620276597713577'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2005/09/142857.html' title='142857'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14156937.post-112073998497046602</id><published>2005-07-07T05:29:00.000-07:00</published><updated>2005-07-11T00:47:46.826-07:00</updated><title type='text'>Another way to prove it</title><content type='html'>&lt;a href="http://photos1.blogger.com/blogger/6658/1274/1600/proof213.gif"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/6658/1274/320/proof213.gif" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;Take 4 triangles. Rotate them as shown in the figure.&lt;br /&gt;&lt;br /&gt;Each has area ab/2.&lt;br /&gt;There is another small sqare whose are is (a-b)^2,&lt;br /&gt;&lt;br /&gt;&lt;a href="http://photos1.blogger.com/blogger/6658/1274/1600/proof221.gif"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/6658/1274/320/proof221.gif" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Thus&lt;br /&gt;c2 = (a-b)2+2ab &lt;br /&gt;  = a2-2ab+b2+2ab &lt;br /&gt;  = a2+b2&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-112073998497046602?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/112073998497046602/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=112073998497046602&amp;isPopup=true' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112073998497046602'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112073998497046602'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2005/07/another-way-to-prove-it.html' title='Another way to prove it'/><author><name>sudhakar</name><uri>http://www.blogger.com/profile/00500076600067180950</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14156937.post-112071969674700716</id><published>2005-07-06T23:56:00.000-07:00</published><updated>2005-07-07T00:01:36.746-07:00</updated><title type='text'>pythagoras theorem</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/648/1137/1600/math2.jpg"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/648/1137/320/math2.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;a simple proof of this wonderful basic theorem ... its usage is ubiquitous&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-112071969674700716?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/112071969674700716/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=112071969674700716&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112071969674700716'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112071969674700716'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2005/07/pythagoras-theorem.html' title='pythagoras theorem'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14156937.post-112067207629192955</id><published>2005-07-06T10:43:00.000-07:00</published><updated>2005-07-08T12:44:30.723-07:00</updated><title type='text'>a+b the whole cube</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/648/1137/1600/math.gif"&gt;&lt;img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/648/1137/320/math.gif" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;extending the same idea to the power three&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-112067207629192955?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/112067207629192955/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=112067207629192955&amp;isPopup=true' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112067207629192955'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112067207629192955'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2005/07/ab-whole-cube.html' title='a+b the whole cube'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-14156937.post-112040148882096919</id><published>2005-07-03T07:31:00.000-07:00</published><updated>2005-07-03T07:38:08.826-07:00</updated><title type='text'>a+b the whole square</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://photos1.blogger.com/blogger/648/1137/1600/math1.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://photos1.blogger.com/blogger/648/1137/320/math1.jpg" border="0" alt="" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;starting off with the basic rectangle area.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/14156937-112040148882096919?l=mathomania.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://mathomania.blogspot.com/feeds/112040148882096919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=14156937&amp;postID=112040148882096919&amp;isPopup=true' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112040148882096919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/14156937/posts/default/112040148882096919'/><link rel='alternate' type='text/html' href='http://mathomania.blogspot.com/2005/07/ab-whole-square.html' title='a+b the whole square'/><author><name>Pilli</name><uri>http://www.blogger.com/profile/08703672070507905902</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='21' src='http://3.bp.blogspot.com/_X2mW-g6OBik/TCUSbwUQtwI/AAAAAAAADhs/cQkaHH6Taxs/S220/img'/></author><thr:total>7</thr:total></entry></feed>
