Thursday, December 25, 2008

Negative Binomial Coefficient

While reading through a book on probability and calculating the expectation of geometric series, I came across an interesting sum
We know that if then the sum converges to


Coming from the other side and using binomial theorem we getwhich expands to



Which leads to an interesting conclusion



I got maxima to verify this by calling the binomial function for various combinations of -1 and n. I am a little confused about the interpretation of the meaning though

Usually nC2 is used to imply from "n" objects, choose 2 at a time. nC2 gives us the number of total such combinations. What does -1Cn mean? What are the other proofs for -1Cn?

Saturday, December 20, 2008

MUST READ: The Last Lecture


I first heard of the book when I was traveling to a conference with a colleague who wanted to read the book, but wanted to find the best place to buy it. He briefly mentioned what the book was about, which I quickly forgot. I saw it again at several places, until I finally bought it from Strand bookshop in Bangalore. The most famous quote from the book is

“We cannot change the cards we are dealt, just how we play the hand.”
--Randy Pausch


This is one of the few books that I've had several people in my family read partially and love it (they are waiting to finish the full book). The book is about childhood dreams, how to achieve them and also goes a step further and talks about how to help others achieve their dreams.

The book is spectacularly well written, when you begin feel sad for Randy (the Author), there is a twist that will make you feel proud of the way Randy handled himself. The book is about positivity, about never giving up, about believing in humanity, in being true, about family values, about the good in the world, with sometimes what cannot be controlled and must be accepted.

Don't pick this book up as a pity book for Randy, you'll be left pitying yourself after reading everything that Randy did and how he lived his life, leaving us pondering if we've made the best use of our time. Randy focuses on family values, his students, his mentors, his family and there is not a single negative sentiment that he passes on to the readers.

If you are feeling depressed or need something good and small to read, something to boost your moral, to rebuild faith, to appreciate life and the people around you, you must read "The Last Lecture"

Friday, December 19, 2008

Dhoni's belief in Dravid

I like Dhoni's attitude, he said two important things

  1. Demoting him will put pressure on him, since 3 or 4 wickets would have fallen when he comes in
  2. He is a good player, who needs some time in the middle

That is again a sign of good captaincy. Dravid, wake up, shake up, cricket calls!

Tuesday, December 16, 2008

FOSS.IN (part 2)

In continuation from FOSS.IN (part I)


Photo by Sony Phil

The first keynote was from Harald Welte. The keynote was about embedded devices, manufacturers and proprietary Linux trees and their complete ignorance or lack of enthusiasm to contribute upstream. The presentation had information about how vendors were still using old obsolete Linux trees, which had several security flaws and the fixes were not being provided to users. The last keynote was from Kalyan Verma. Unlike the first keynote that lacked a single illustration, this one was full of award winning pictures, FOSS principles applied to other professions and life and also about the environment. How a cup of tea is playing its part in hurting the environment and the stress that we as humans and our requirements is putting on nature. Kalyan also spoke about his previous job as a security expert at Yahoo. He spoke about how cryptography makes no sense and there were obvious security flaws in most implementations. I disagree with Kalyan on some of the things he said about cryptography (like it makes no sense). I think what Kalyan was alluding to, but failed to say was that, security is only as good as the weakest link (a fact known to almost all programmers by now).

Kalyan mentioned that putting up his photographs under creative commons has gone a long way in helping his career. Since the pictures were free to download, they were shared under creative commons, which lead to newer opportunities and work. He went on to say, Pictures are a remarkable form of art. The more you look at them, the more you admire them, which is why sharing his pictures brought in more work and money.

Do check his photographs, they are really cool! James has a good coverage of his keynote as well.

The FOSS.IN team put out a video documentary covering their aspiration for their event and what was achieved. I'd say with FOSS.IN 2008, we've headed in the right direction, probably lost a few people along the way, but we are headed in the right direction. A technical event such as FOSS.IN should focus on contributions and try to encourage and build the mind share for it. Such a direction requires time and patience and also a lot of will power from both attendees and the organizers. We had a drastic change in sponsors this year, but we had them nevertheless, without whom such a large scale operation is hard to carry out.

The food, lunch and snacks were excellent, again James covered it well with photographs and other photographs marked foss.in on flickr. Here are some more memories from FOSS.IN 2008



Photo by Sony Phil


Photo by James Morris


From mdemon


From Sony Phil, photograph from the libcgroup workout

Sunday, December 07, 2008

Lagrange's interpretation in python

I've been reading up on Fast Fourier Transform (FFT) from several books on algorithms that I have, TCLR, Tamassia, Sahni, Numerical Recipes, a big set of DSP books. Several of these books focus on interpolation before touching upon the subject of FFT. My favourite book so far for numerical algorithms is R.W. Hamming's Numerical Methods for Scientists and Engineers, Second Edition, Dover publication. Chapter 14, touches upon this topic. I love his explanation and illustration of interpolation versus extrapolation. Thinking along that subject, I decided to do some implementation of my own for interpolation. Sahni (Computer algorithms in C++) has an understandable implementation of the algorithm. The biggest drawback was implementing my own polynomial class. This is where, I think Python scores. I found that SciPy implements a polynomial class.

Here is the code for interpolation

def lagrange(x):
tmp = scipy.poly1d([0])
result=scipy.poly1d([0])

for i in x.keys():
numerator=scipy.poly1d([1])
denom = 1.0
for j in x.keys():
if (i != j):
tmp = scipy.poly1d([1,-j])
numerator = numerator * tmp
denom = denom * (i - j)
tmp = (numerator/denom) * x.get(i)
result = result + tmp

return result

input = {0:5, 1:10, 2:21}
print lagrange(input)
NOTE: Blogger keeps messing up my indentation, I am yet to figure out why.

Sahni's input for the example is {0:1, 1:10, 2:21} and I was surprised to see my program return a different output. Fixing the input, showed the correct results. That reminds me, somebody please ask Sahni to start maintaining useful errata for his books. I searched on the web and found nothing useful.

Running the same algorithm on y = log(x) and input = {1:0, 2:0.3010, 3:0.4771, 4:0.6021}, gave me 00.0123 x^3 - 0.1362 x^2 + 0.6236 x - 0.4997, which corresponds to the cubical approximation of log x (R W Hamming, page 233).

Friday, December 05, 2008

FOSS.IN 2008 Report (Part I)

FOSS.IN was an event I usually attended, last year I co-presented and this year presented and held a workshop at. I've been meaning to display promotional content on my blog



But... I could not :(

Anyway, the story is not over, even though foss.in for 2008 is. The promos show clearly what the organizers had in mind. I must admit that the organizers make me nervous with the schedule, with selected talks being announced about three weeks before the final event, when I was on vacation. The schedule and slides can be found here. I presented on control groups and organized a workout for libcgroup. Both were well received with significant queries at the end of the talk and good workout participation. We got several patches posted during the workout and after. The workout plan and updates are here.

One of the things we did well this year, was the kernel hacker day at foss.in and followed it up with a successful workout. We had a good number of people come and talk to us about the kernel, their intention to contribute and the issues they face. We admittedly had a plan 9 fan, apart from Christoph Hellwig. There were lightening talks and I spoke about my ideas on building a threaded RB tree for Linux.



Kernel Hacker Gathering (Photo by James Morris as seen on flickr)

There are some fun photos, that several people took. Kushal from Fedora took some very nice ones. He was kind enough to photograph all women and leave me out. Needless to say Kushal, you owe me a T-shirt and I want it now! James Morris, did a good job of taking photographs as well.


(Photo by James Morris as seen on flickr)

(Photo by James Morris as seen on flickr)

One thing that did catch my attention was my T-Shirt with my name on it. I love the T-Shirt and hope it stops choking me, when I wear it, someday :)



Speaker T-Shirts (Thanks, well done guys!!)









I was caught working, I could show the code if needed!

You can find James' photo set here.

Lets step back, the event began with a video from team FOSS.IN




Atul has always been a good speaker, he began by explaining the motivation for the change this year and ate an Apple on the stage, claiming that it was only low hanging fruit in the conference and he ate it :) Unfortunately for Atul, we provided other low hanging fruits to developers and allowed people to contribute, even if the contribution was trivial. In the longer run, as foss.in proceeds year and year, I think we'll find the low hanging fruits disappear as the developers mature and our contributions mature.

I'll update on the keynotes, the other speakers and more interesting stuff in part II, stay tuned.

Tuesday, November 18, 2008

Having a bad day?

Have you ever had a feeling of a bad day. Days that you wish would either bring some good news or just end or if possible never started. We'll such days are definitely hidden in every month, every year and in our life. Believe it or not, one will strike it when you least expect it. One needs to learn to get through such days and even fight day. Fight back a day? Yes, it is possible

  1. Be nice and assertive to the most annoying people around you
  2. Don't show on your face that you are annoyed, wear a smile
  3. Remember bad days can end quickly if you are positive and will last for ever if your attitude is negative
  4. Learn from your bad days, analyze to see what you could have done differently to make them end faster
  5. Help others around you have a good day, even if you are having a bad day (of course not at your own cost)

Fight back and take bad days away from your life. Remember life is too short to have bad days in them.

Friday, November 07, 2008

Bank of San Serriffe (with branches in Blefuscu and Elbonia on the planet Pincus)

Knuth has decided to stop sending personal checks, due to his discovery of a financial fiasco. I've have one hexadecimal dollar in the bank. The list of all people who have money in the bank can be found here.

Thursday, November 06, 2008

Time out, take a break, Dravid!

(Photo from http://content-usa.cricinfo.com/indvaus2008/content/current/player/28114.html)

Dravid's dismal form continues in test cricket. He is already out of the one-day squad. When Dravid resigned as captain, he did so to focus on his batting. Unfortunately, Royal Challengers did not work for him (despite his good innings towards the end, when the challenge was already over). His test cricket form has also gone bad. I think it is time to hand Dravid the Ganguly treatment. Drop him from the squad and get him to make a comeback. This is the same thing he and Chappel did to Ganguly and it seemed to work well. I don't want to rule out Dravid for the future, but he seems to be holding up a place that he needs to deserve again. He has a lot of cricket left in him. Seeing his mates Ganguly and Anil must make him nervous, but he should look at Tendulkar for inspiration.

The best way to get back to form is to play domestic cricket and make a good comeback. I hope Dravid will realize that a break is in his favour and the selectors will hand him one.

Saturday, October 11, 2008

The world economy, history and more

Looking through the great depression in the stock market reminds me of the 2001-2002 days, when the web commerce bubble burst and a recession was on our hands. Are we looking at a recession, we'll from my point of view and many others we are already in it; in fact we are in a worse state. I usually don't talk about the economy, but this time I am very worried

1. Look at India's IIP numbers
2. There is a liquidity crunch (banks are not even lending to each other)
3. Unlike last time, we are in a state where need a huge financial bail out

My brother sent an interesting SMS, which read something like

If my bank returns my cheque quoting "Lack of Funds" as the reason. I won't know if the funds were lacking in my account or in the bank

I do believe in the principle that "Money is hardly ever destroyed", why do I say that?

  1. Wealth is usually created, as we find new resources, work harder, make new products or provide new services
  2. In general money passes hands and is never destroyed
  3. Wealth is sometimes destroyed, when we are hit by natural disasters that cause a loss in property, for example
Assuming that my principle holds, in the sub-prime crisis who made money? Where did the money change hands? Did the rich get richer and the poor get poorer? Did we boost our living standard to a higher standard than should have been?

In retrospective from the 2001 recession, web based commerce emerged back stronger and better. The technology, the pricing and the users matured (there were no more freebies for just signing up, BTW, I missed out on all of those :( ). What can expect to see as we come out of this recession? Will banks and insurance, investment companies be smarter? Will there be new regulations to make sure we don't hit such a crisis again?

Looking at the stock market, this is the third slump I've seen and been bitten by, the other two were

  1. Harshad Mehta's stock scam (I was very small/young then, but I understood what was going on)
  2. 2001 recession
History has taught me to be optimistic and know that we will come out of the bad times, the only thing to do is be patient, be positive and know that these things take a long time to recover, but they eventually do (or else we are doomed anyway, so what choice do I have, but to be optimistic :) ). Such times, test survival and like nature will choose the fittest to survive and learn from the mistakes of those who didn't survive the recession.

It is a cycle and we've hit the negative part of the cycle, the positives should be around somewhere, I hope we turn around quickly. Let's hope and pray that we quickly recover back from this situation and become stronger.

Tuesday, September 23, 2008

kernel summit 2008 photo on LWN.net

For those who have not seen it yet, it is at http://lwn.net/images/conf/lpc-ks-2008/ks-group.jpg

A thumbnail from LWN.net is included below. There were other photographers hired by Linux Foundation, waiting for them to post their photos and compare :)




Saturday, September 06, 2008

Why I have not blogged in a while

Work and family life have kept me occupied. I just returned from OLS in July and I am currently at the airport lounge waiting to board my flight to Portland to attend the Kernel Summit. After the kernel summit, I go on to attend Plumbers Conference. I expect both events to be very exciting and it is a great opportunity for me to catch up with old friends around Portland.

I am not carrying a camera this time around, I intend to buy a good cheap camera, that can obsolete itself without making me worry about spending too much money on it. Conferences are usually a great time to get a lot of work done, lets see what this trip does to my productivity :)

Monday, July 14, 2008

Quote of the day

"Genius may have its limitations, but stupidity is not thus handicapped"
Elbert Hubbard

Tuesday, May 27, 2008

Fedora 9 and packaging

I ran into a weird issue with Fedora 9 today. Just before leaving home, I shut my laptop lid and headed out. In my auto rickshaw on Bangalore roads, I found my bag heating up. To my surprise, I found that the laptop failed to suspend. When I tried again, I saw a popup that said

Hibernate request refused, the package manager prevented the hibernate operation since it was in the middle on an uninterruptible operation or something similar. I had to manually kill all the packagekit processes and yum before I got the laptop to resume.

I should start filing the BUGS I find into bugzilla soon.

Friday, May 16, 2008

Upgraded to Fedora 9

I eventually took the plunge, upgraded to Fedora 9, the day it was released. What makes my desktop very interesting is that I have an "Nvidia" video card. I upgraded from Fedora Core 8 to Fedora 9. Notice the word core is gone in 9, that's because the core and extras repositories were merged in this release.

I often ask myself, why did I upgrade so quickly - as an after thought. The answer is that I like to try new stuff, I am excited by change, new features, the possibility of getting something better quickly. I think that's the open source philosophy as well "Release early, Release often"

The new features do come at a cost though. I had to spend a few hours trying to bring up my X. Nvidia is not supported as an in kernel driver, there is a proprietary driver for it. Here's what I tried

  1. I used the VESA driver, but I was not happy about the missing graphics acceleration and open GL support
  2. I tried the nvdia driver from livna, but that had other problems - including complaints about ABI not matching. I tried the trick of starting X with -ignoreABI and setting the option in xorg.conf
  3. I wanted to try the driver directly from nvidia, but the kernel compile failed. I got patches from nvidia for 2.6.25 and ran into the same ABI issue. Ignoring ABI was not an option, since the shared library module for the nvidia driver uses a symbol that is now missing with the new X that comes bundled with Fedora 9
Disappointed, I went back to step 1 and I'll wait for the solution to come by or take a shot at a good solution myself. Downgrading X is not a good option, so I am going to hold on to that thought.

While configuring the X server, I remembered my first X install (Slackware, around 1999 or 2000). It came with a utility called xf86config, that asked a set of questions and generated a XFree86 configuration file, with a warning that getting the vertical and horizontal frequencies incorrect could fry the video card. Life is much better with Fedora 9, but not all that easy.

Although, I am beginning to like Fedora better than Ubuntu, Fedora's GUI package management sucks. Yumex is the closest thing it has for sane package management, the gnome based pirut, pacakgeit, etc all leave a user wondering what is going on in the background. I would highly recommend installing yumex and using it as the package manager

Fedora 9 comes with a bunch of kernel features - cgroups, cpu controller, cpu accounting controller and the namespace controller. I had a hand in some of these controllers, but unfortunately the memory controller has been disabled.

Fedora 9 comes bundled with FireFox 3 beta 5 (same as Ubuntu Hardy), FireFox 3 seems pretty cool in terms of user friendliness and stability. Downloading updates can be quite painful, unless you happen to know a very good and fast mirror. Most of the times I've tried to download updates, I get an error stating that the mirror is down or "no such file or directory" or "too many users". I guess that is expected since the whole Linux world is trying to get their hands on Fedora 9.

I found printing to be friendlier and more intuitive. I got errors correctly, stating that my printer was running low on ink or there was a paper jam. The print UI seemed quite robust and stable.

I tried KDE4, only to be a little disappointed. KDE4 on Fedora 9 is definitely much better than it is on kubuntu. Settings are well integrated and one has control over KDE4, unlike kubuntu where the controls are still for KDE3. The reason, I was disppointed with KDE was the interactiveness and latency in terms of response. The new UI is flashy, but most of my widgets failed to work (the comic widget and the dictionary widget, for example). The rendering of gtk based applications is quite poor. Most GUI on Linux seems to use the gtk widget library and some use Qt4. Firefox, eclipse, emacs, etc do not look very nice under KDE. These are still early days for KDE4, I hope it will mature soon into something I would want to use.

OpenOffice 2.4 was pleasantly surprising. As always, they seemed to have improved integration with documents and the generated pdf's look really nice. Usability is much nicer and so is the rendering and interactiveness. I would like to give them a thumbs up for this release. The major difference I saw with respect to Ubuntu's Hardy release was that there was no Sun Logo embedded in the splash screen of OpenOffice. I need to see why Hardy has the Sun Logo embedded.

I am glad to see (this was some time back as well) that Adobe and Google now have Fedora yum repositories, which is a very good sign. I wish nvidia would provide similar repositories.

I've just started using Fedora 9, I'll blog more on it, as I experiment and play with it.

Sunday, April 27, 2008

Knuth's recent interview

Andrew Binstock recently interviewed Knuth. I would highly recommend reading the interview. It was really sad to find out that Knuth has been diagnosed with Prostate Cancer, but here are some my favourite quotations from the interview

"The success of open source code is perhaps the only thing in the computer field that hasn’t surprised me during the past several decades. But it still hasn’t reached its full potential; I believe that open-source programs will begin to be completely dominant as the economy moves more and more from products towards services, and as more and more volunteers arise to improve the code

For example, open-source code can produce thousands of binaries, tuned perfectly to the configurations of individual users, whereas commercial software usually will exist in only a few versions. A generic binary executable file must include things like inefficient "sync" instructions that are totally inappropriate for many installations; such wastage goes away when the source code is highly configurable. This should be a huge win for open source.

Yet I think that a few programs, such as Adobe Photoshop, will always be superior to competitors like the Gimp—for some reason, I really don’t know why! I’m quite willing to pay good money for really good software, if I believe that it has been produced by the best programmers."

"I might as well flame a bit about my personal unhappiness with the current trend toward multicore architecture. To me, it looks more or less like the hardware designers have run out of ideas, and that they’re trying to pass the blame for the future demise of Moore’s Law to the software writers by giving us machines that work faster only on a few key benchmarks! I won’t be surprised at all if the whole multithreading idea turns out to be a flop, worse than the "Titanium" approach that was supposed to be so terrific—until it turned out that the wished-for compilers were basically impossible to write."

"The machine I use today has dual processors. I get to use them both only when I’m running two independent jobs at the same time; that’s nice, but it happens only a few minutes every week. If I had four processors, or eight, or more, I still wouldn’t be any better off, considering the kind of work I do—even though I’m using my computer almost every day during most of the day.

So why should I be so happy about the future that hardware vendors promise? They think a magic bullet will come along to make multicores speed up my kind of work; I think it’s a pipe dream. (No—that’s the wrong metaphor! "Pipelines" actually work for me, but threads don’t. Maybe the word I want is "bubble.") From the opposite point of view, I do grant that web browsing probably will get better with multicores"

"On a positive note, I’ve been pleased to discover that the conventions of CWEB are already standard equipment within preinstalled software such as Makefiles, when I get off-the-shelf Linux these days."

"I currently use Ubuntu Linux, on a standalone laptop—it has no Internet connection. I occasionally carry flash memory drives between this machine and the Macs that I use for network surfing and graphics; but I trust my family jewels only to Linux. Incidentally, with Linux I much prefer the keyboard focus that I can get with classic FVWM to the GNOME and KDE environments that other people seem to like better. To each his own."

"let me just say that almost everything I’ve ever heard associated with the term "extreme programming" sounds like exactly the wrong way to go...with one exception. The exception is the idea of working in teams and reading each other’s code. That idea is crucial, and it might even mask out all the terrible aspects of extreme programming that alarm me."

"I also must confess to a strong bias against the fashion for reusable code. To me, "re-editable code" is much, much better than an untouchable black box or toolkit. I could go on and on about this. If you’re totally convinced that reusable code is wonderful, I probably won’t be able to sway you anyway, but you’ll never convince me that reusable code isn’t mostly a menace."

Saturday, April 12, 2008

Atomic access

I was involved in a set of emails exchanged about per CPU data and atomic access. The argument was basically this

"If you access 64 bit data on a 32 bit machine, what part of the access is atomic?". One would assume that with per-CPU data, it is safe to read the data from a different CPU". The answer lies hidden in the processor architecture. Several RISC architectures require certain types of data to be aligned to specific boundaries (this in turn ensures that the access is atomic). Usually processor manuals suggest that data that is contained within a single cache line is likely to be fetched atomically. Ideally, it is recommended that the data be aligned to the boundary of it's size, so that access is atomic. To explain that further

16 bit data be aligned to a 16 bit boundary
32 bit data be aligned to a 32 bit boundary
64 bit data be aligned to a 64 bit boundary

So the next time you think of atomic access, data sizes, per CPU data, look at your processor manual and determine if the data needs to be protected when accessed from a different CPU.

Wednesday, April 02, 2008

RSS feed is fixed

The RSS feed has been changed to export full content instead of the earlier partial content. The blog should be easier and more fun to read with an RSS reader now.

Feeling left out of the software world

It seems to me that there is a hard barrier between the software development world and the systems programming world. I feel left out of the developments in software that have taken the world over. Agile/Lean programming, EJB, J2EE, .NET, .NET Remoting, JSP, JSTL, Web containers, EJB, MVC, Spring, OpenID, SSO, Indigo, WCF, WPF, Aspect Oriented Programming, Web services, CSS, XML, XSLT, XQuery, ADO, LINQ, AJAX, RSS, RDF, etc. are keywords I hear everyday from my other friends everyday and wonder where I've been while the world has been changing so dramatically?

In retrospect, I've been working on concepts that were quite well understood in the 60's and 70's - Virtualization, Resource Management, Processes, Threads, etc. Concurrency is very interesting, specially due to multi-core now being ubiquitous. My TODO list looks very dull - Python, Algorithms, Architecture of so and so processor, etc.

It seems like there is a hard barrier that prevents people stuck in systems from working in the layer above. I feel left and cut-out from the innovation in the application space. While, I am still finishing up on the basic design patterns, the world has already moved on to domain specific patterns. I do feel lost, but there is hope. Hope that someday, I'll take a look on the other side, where the grass seems greener; jump the fence; make sense of the new world; the world that seems to be moving at a rapid pace.

Wednesday, March 19, 2008

Doing my time outside of systems programming

I spend a lot of time doing systems programming. As humbly as possible I don't claim to be an expert at it. While there is a lot of learning to be done on the systems side, the applications side also drags me to it. I feel I should do my time with them, it's their fair due that I owe them; to understand them better and to appreciate them.



I've just started reading Web Services Essentials. I finished chapter 1, it seemed quite well written and was easily understandable. Unfortunately, the websites listed in the book are no longer accessible. That is quite understandable given that the book was written in 2002.



The other favourite book these days is "C# Precisely". It's a well written compact book. The book consists of 30 sections and you get the feeling that you are learning C# with the least possible time investment. I look forward to putting Mono through the C# precisely test

There are also some other things on my plate that I hope to finish up quickly. I suspect that going through this exercise will give me more debating power to argue for/against technology with my friends and colleagues and also help me appreciate what lies on the other side.

Saturday, March 15, 2008

Ups and Downs from India's Australian Cricket Tour

An Indian Fan's view of the ups and downs

Up

  1. India did well without their seniors in the ODIs
  2. Tendulkar helped India win two finals
  3. Dhoni led from the front
  4. Harbhajan Singh managed to dodge charges leveled against him without evidence
  5. India let Brag Hogg go, even though he used abusive words against the Indian captain
  6. Bad umpiring was penalized. Steve Bucknor got his well deserved punishment for bad umpiring (long due, he seemed biased against India)
  7. Hayden was reprimanded for denigrating an Indian player
  8. Australian public criticized the spirit of the Australian Cricket team for unfair play

Down

  1. Adam Gilchrist, a well respected cricketer retired
  2. Michael Clarke got away, even though he tackled Tendulkar in the finals
  3. Symonds seemed out of form
  4. Ricky Ponting seemed out of form
  5. Australian players got away by claiming catches that they really failed to hold on to
  6. Australian media for looking foolish after every charge they leveled against the Indian team players were waved off

Thursday, February 14, 2008

Linux 2.6.25-rc1 (new features)

I am extremely glad to see 2.6.25-rc1, specially due to some of the new features that I've added.

A list of features is mentioned in the LWN article about the merge window for 2.6.25-rc1. This includes the memory controller (now called memory resource controller). Check out http://lwn.net/Articles/268937/ as well. We also got fake NUMA nodes for PowerPC and many other small fixes.

I have a new favorite website for git changelogs http://tree.celinuxforum.org/gitstat/index.php

Check out some of the cool graphs from that website

Sunday, February 03, 2008

Bhaskara's proof of the pythagoras's theorem


Bhaskara's Proof

Bhaskara's proof (1114 AD) of the theorem follows from the figure




So simple, elegant and beautiful. I wish I was aware of this proof as a student

Wednesday, January 09, 2008

Favourite Quote for the Day

Loosely speaking we can think of automata, grammar and computability as the study of what can be done by computers in principle, while complexity addresses what can be done in practice.
Peter Linz

Monday, January 07, 2008

Crazy mathematics

As I was shifting my books from one location to another, I found a big heap of books, I had not even started reading or looked at in detail. Being me, I got distracted by them and decided to at-least give them a chance to fulfill their destiny (to be read cover to cover by their owners or the friends of the owners).

I started with Tom Apostol's Mathematical Analysis. It is a wonderfully terse book and I found myself struggling by the time I reached the topic on "Point Set Topology". I had been through a quick journey of the past - real and complex numbers, sets and cardinality, prime numbers and many more things.

I also ran into the famous Cauchy-Schwarz inequality. I remember having proved the inequality in the exercise of Don Knuth's Art of computer programming volume I, but by now I had forgotten it all -- the sum manipulation, the whole of chapter 1 as hiding somewhere in my memory and seeking it was a hard/impossible task. This time, I found myself taking the help of a symbolic computation package - maxima. My dialog was as follows

(%i2) expand((a1^2 + a2^2)*(b1^2 + b2^2));
(%o2) a2^2*b2^2+a1^2*b2^2+a2^2*b1^2+a1^2*b1^2
(%i4) expand((a1b1 + a2b2)^2);
(%o4) a2b2^2+2*a1b1*a2b2+a1b1^2

(%i31) (a1^2 + a2^2)*(b1^2 + b2^2) - ((a1b1 + a2b2)^2);
(%o31) (a2^2+a1^2)*(b2^2+b1^2)-(a2b2+a1b1)^2
(%i32) expand(%);
(%o32) a2^2*b2^2+a1^2*b2^2+a2^2*b1^2+a1^2*b1^2-a2b2^2-2*a1b1*a2b2-a1b1^2

To cut the long output short, I ended up with Lagrange's inequality.

This is just a small part of the mathematics I have to (re)learn, there is also graph theory, game theory, probability theory, Markov chains and theory of computation.

All the mathematics is very exciting, but time consuming. I have loads of other information to read and digest. Let's see where all this I need to learn this crazy math attitude takes me.

Tuesday, January 01, 2008

Have a fantastic new year 2008

It's that time again, a year has gone by, brought happiness and sad moments, but it's gone! Remember to change the year in your dates, make new year resolutions, start afresh, be more positive, thankful and happy that we have a new chance to do/make things right.

HAVE A GREAT NEW YEAR and make every day count

Ranking and Unranking permutations

I've been a big fan of Skiena's Algorithm Design Manual , I recently found my first edition of the book (although I own the third ed...