Skip to main content

Learning high school physics

Most of what you are going to read are based on my personal experience as a student of physics myself. But, I think you should have a look.
I am a student of engineering now and doesn't do much of fundamental physics these days. But back in high school I used to enjoy it. More than anything else, the class textbook from the NCERT was my primary guide as I put a lot of emphasis on understanding the concept more than drilling problems or memorizing formulae. However, I was lucky enough to have done even the testing types of questions of the IIT JEE decently well.
But, after gaining good exposure to a variety of smart students at college I now think I have found a better way of learning physics. This is what I wish to write about here. To put it in a nutshell,
The concepts are short and easy. Learn them quick and easy.
Work hard on solving problems, raising the difficulty level slowly but steadily.
As I said, I used to spend a lot of time reading the textbook. I did that out of a clear need - to bring clarity to my understanding. Frankly, it did pay off.
But, what I am proposing here is that, there might be an easier way of achieving the same clarity. That is to turn to the 'right' resources. Right would mean good teachers, for example. Even If you are not so lucky, the internet, in my opinion has content from amazing teachers. (Have a look at my post on physics resources)
I am not advocating for shortcuts here, instead just trying to make time to practice what that really matters - the problem solving skill.

Comments

Popular posts from this blog

Jump start into Character Recognition - Part 1

Motivation The dawn of computers and their integration into a huge network called the internet has accelerated the sharing of knowledge like never before. However, there exists a divide between the forms of expression familiar to us and the forms in which the information can be fed in at a computer terminal. For example, when writing about scientific material we make extensive use of diagrams to convey the ideas, but, feeding a graphic into the computer, requires special effort and doesn't come naturally. These and other aspects have always been a matter of concern for me, being someone fond of publishing on the web whatever I know :) Any how, the aim of this article and other in this series is not to demonstrate my solution to the above problem ... instead to attract young and curious minds to the problem so that they may contribute to it solution. Start The plan is to build, step by step, a very simple, character recognition program which would take a simple text file contai...

Learning assembly is easy

More than a year ago, in the fourth semester of my engineering studies I was formally introduced to the assembly level programming of the Intel 8086. However, to test my programs I got a special software package installed on my PC. The extra piece of software was justified as there was the need for an emulator - something that mimics the 8086 on anybody's computer. But the question remained ... when am I going to write an assembly program that I can directly run on my own processor and not on an emulator. Now, after a while and having rediscovered my interest for assembly I have finally figured out that it is extremely easy using gcc on my Linux terminal - Write the assembly code and save to a test file with the extension .s. Next on the terminal $ gcc test.s $ ./a.out Done !! Here is a wonderful tutorial http://linuxgazette.net/issue94/ramankutty.html