Possible Duplicate:
Why are we using i as a counter in loops

I know this might seem like an absolutely silly question to ask, yet I am too curious not to ask...

Why did "i" and "j" become THE variables to use as counters in most control structures?

Although common sense tells me they are just like X, which is used for representing unknown values, I can't help to think that there must be a reason why everyone gets taught the same way over and over again.

Is it because it is actually recommended for best practices, or a convention, or does it have some obscure reason behind it?

Just in case, I know I can give them whatever name I want and that variables names are not relevant.

link
17  
i=iteration while j=after interation – ajreal Nov 9 '10 at 19:48
7  
strange 'c' was not choosen? as in the Intel 'cx' counter register. – user295190 Nov 9 '10 at 23:12
12  
Cartesian coordinates – Nick Dandoulakis Nov 10 '10 at 19:33
16  
Why do actual questions become community wikis just because they're popular? This feels very reminiscent of communism. If somebody invents something really cool, the government steals the invention to share with the community. – orokusaki Dec 8 '10 at 21:34
9  
Closed wrong way: the answers here are more informative than to the other qn... – Charles Stewart Dec 9 '10 at 10:07
show 11 more comments
feedback

locked by Bill the Lizard Oct 13 '11 at 21:22

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.

closed as exact duplicate by Eric, Lance Roberts, Shaggy Frog, Tim Stone, Michael Mrozek Dec 8 '10 at 22:17

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

31 Answers

1 2
up vote 331 down vote accepted
+50

It comes ultimately from mathematics: the summation notation traditionally uses i for the first index, j for the second, and so on. Example (from http://en.wikipedia.org/wiki/Summation):

\sum_{i=1}^{n} i = \frac{n^2 + n}{2}

It's also used that way for collections of things, like if you have a bunch of variables x1, x2, ... xn, then an arbitrary one will be known as xi.

As for why it's that way, I imagine SLaks is correct and it's because I is the first letter in Index.

link
93  
@SLott: And why is i used in math? – SLaks Nov 9 '10 at 20:31
13  
@Slaks: That's a good question. I actually think that "i" might come from integer more than index. I also think it's easy to write on a chalkboard. Back in the 70's we were cautioned to be sure that we wrote our "i" and "j" in a perfectly distinctive manner. Indeed, we were told to draw our "i" exactly like a backwards "j" to be perfectly clear about it. – S.Lott Nov 9 '10 at 20:38
26  
@S.Lott: I doubt it comes from integer. We use ℤ (blackboard bold Z) for the integers because it stands for the German word Zahlen, which means numbers. Assuming that the summation notation arose at around the same time, the German-based notation would be expected—and the German word for index is Index, which also begins with an i. And I can't think of many letters which are particularly hard to write on a chalkboard. Well, except ξ :-) – Antal S-Z Nov 9 '10 at 22:52
14  
"This convention exists because this convention has existed before." That's kind of how etymology works: nobody knows why a particular noise had a particular meaning in PIE. It would be nice to explain the mathematical convention, but the question is "why are they used as counters in control structures", so until someone produces an answer that goes back further, this is the best. It does at least speculate why it's used in mathematics. A proper mathematical historian could find out, maybe using a binary chop. Euclid didn't use it, I bet von Neumann did. How about Cauchy? He used indexes a lot – Steve Jessop Nov 9 '10 at 23:14
14  
I think it was Lagrange who recommended using a,b,c for constants of a function, and x,y,z for variables of a function. i,j,k denote the 'directions' of a vector, and the factors of a formal sum like this can be construed as degrees of freedom [directions, by another name] of the equation. – David Dec 5 '10 at 19:57
show 30 more comments
feedback

I believe it dates back to Fortran. Variables starting with I through Q were integer by default, the others were real. This meant that I was the first integer variable, and J the second, etc., so they fell towards use in loops.

link
53  
I think this comes from the way mathematicians seem to like to use i, j, k as handy subscripts for summation and matrix multiplication indices and what-not. I remember reading in an early Fortran II manual something about that. (Yes, Fortran II.) – S.Lott Nov 9 '10 at 19:51
5  
Yes, FORTRAN originates these conventions. – Xepoch Nov 10 '10 at 0:26
3  
Called implicit declaration... – Xepoch Nov 10 '10 at 4:20
9  
I was taught I through N not Q. Google seems to mostly agree. (different versions of FORTRAN?) – Hugh Allen Nov 12 '10 at 14:14
4  
@learnvst - because mathematicians had been using i,j for at least a century beforehand. – Martin Beckett Nov 18 '10 at 17:49
show 7 more comments
feedback

Because of the name D*ijk*stra.

link
47  
What, you're taking this question seriously? – bmargulies Nov 15 '10 at 20:00
8  
"LoL" would be my comment if it wasn't for the minimum characters limit ;) – naugtur Nov 16 '10 at 12:21
7  
That explanation might work better if his name wasn't really "Dÿkstra". – Jerry Coffin Nov 19 '10 at 4:48
10  
@Jerry, the name is Dijkstra with a ligature for ij, not Dÿkstra with trema on a y. – AProgrammer Dec 5 '10 at 18:23
show 3 more comments
feedback

i stands for Index.
j comes after i.

link
169  
no, n comes after i - i n d e x. – Pete Kirkham Nov 9 '10 at 20:18
12  
I think he was talking about alphabet, try to use some imagination :) – Jack Nov 9 '10 at 21:16
33  
@Jack: I think @Pete was joking ;-) – Christopher Pfohl Nov 9 '10 at 21:59
13  
@Cpfohl: yep, just wanted to be boring :D – Jack Nov 9 '10 at 22:02
4  
@Pete Kirkham: Thank you very much Pete, it was the best laugh I had in the past month. – AMissico Nov 17 '10 at 18:21
show 3 more comments
feedback

These symbols were used as matrix indexes in mathematics long before electronic computers were invented.

link
show 1 more comment
feedback

There's a preference in maths for using consecutive letters in the alphabet for "anonymous" variables used in a similar way. Hence, not just "i, j, k", but also "f, g, h", "p, q, r", "x, y, z" (rarely with "u, v, w" prepended), and "α, β, γ".

Now "f, g, h" and "x, y, z" are not used freely: the former is for functions, the latter for dimensions. "p, q, r" are also often used for functions.

Then there are other constraints on available sequences: "l" and "o" are avoided, because they look too much like "1" and "0" in many fonts. "t" is often used for time, "d & δ" for differentials, and "a, s, m, v" for the physical measures of acceleration, displacement, mass, and velocity. That leaves not so many gaps of three consecutive letters without unwanted associations in mathematics for indices.

Then, as several others have noticed, conventions from mathematics had a strong influence on early programming conventions, and "α, β, γ" weren't available in many early character sets.

link
2  
Agreed. Although, a, b, c is a fairly commonly used sequence despite a having multiple meanings... – Stobor Nov 17 '10 at 5:25
feedback

I found another possible answer that could be that i, j, and k come from Hamilton's Quaternions.

alt text

Euler picked i for the imaginary unit.

Hamilton needed two more square roots of -1: ii = jj = kk = ijk = -1

Hamilton was really influential, and quaternions were the standard way to do 3D analysis before 1900. By then, mathematicians were used to thinking of (ijk) as a matched set. Vector calculus replaced quaternionic analysis in the 1890s because it was a better way to write Maxwell's equations. But people tended to write vector quantities as like this: (3i-2j+k) instead of (3,-2,1). So (ijk) became the standard basis vectors in R^3.

Finally, physicists started using group theory to describe symmetries in systems of differential equations. So (ijk) started to connote "vectors that get swapped around by permutation groups," then drifted towards "index-like things that take on all possible values in some specified set," which is basically what they mean in a for loop.

link
11  
at last a different approach to the question, interesting point +1 – Fabian Dec 5 '10 at 17:20
feedback

by discarding (a little biased)

a seems an array
b seems another array 
c seems a language name
d seems another language name
e seems exception
f looks bad in combination with "for" (for f, a pickup?)
g seems g force
h seems height

i seems an index                    
j seems i (another index)

k seems a constant k
l seems a number one (1) 
m seems a matrix
n seems a node
o seems an output
p sounds like a pointer
q seems a queue
r seems a return value
s seems a string
t looks like time
u reserved for UVW mapping or electic phase 
v reserved for UVW mapping or electic phase or a vector
w reserved for UVW mapping or electic phase or a weight
x seems an axis (or an unknown variable)
y seems an axis
z seems a third axis
link
3  
I see n as number, usually the number of elements in a set. – Tom Leys Dec 5 '10 at 19:30
5  
o seems an object actually – bluesmoon Dec 5 '10 at 21:40
6  
Oh men, and what XXX seem to be? )) +1 for the creativity ;) – Hovhannes Grigoryan Mar 12 '11 at 13:54
show 1 more comment
feedback

One sunny afternoon, Archimedes what pondering (as was usual for sunny afternoons) and ran into his buddy Eratosthenes.

Archimedes said, "Archimedes to Eratosthenes greeting! I'm trying to come up with a solution to the ratio of several spherical rigid bodies in equilibrium. I wish to iterate over these bodies multiple times, but I'm having a frightful time keeping track of how many iterations I've done!"

Eratosthenes said, "Why Archimedes, you ripe plum of a kidder, you could merely mark successive rows of lines in the sand, each keeping track of the number of iterations you've done within iteration!"

Archimedes cried out to the world that his great friend was undeniably a shining beacon of intelligence for coming up with such a simple solution. But Archimedes remarked that he likes to walk in circles around his sand pit while he ponders. Thus, there was risk of losing track of which row was on top, and which was on bottom.

"Perhaps I should mark these rows with a letter of the alphabet just off to the side so that I will always know which row is which! What think you of that?" he asked, then added, "But Eratosthenes... whatever letters shall I use?"

Eratosthenes was sure he didn't know which letters would be best, and said as much to Archimedes. But Archimedes was unsatisfied and continued to prod the poor librarian to choose, at least, the two letters that he would require for his current sphere equilibrium solution.

Eratosthenes, finally tired of the incessant request for two letters, yelled, "I JUST DON'T KNOW!!!"

So Archimedes chose the first two letters in Eratosthenes' exclamatory sentence, and thanked his friend for the contribution.


These symbols were quickly adopted by ancient Greek Java developers, and the rest is, well... history.

link
10  
...and thankfully the ancient Greeks spoke English... – Gerrat Nov 18 '10 at 19:08
6  
... and had the letter j. – Andrew Grimm Nov 22 '10 at 12:27
1  
hooo, you have some imagination. but no points :) – alvin Dec 9 '10 at 20:51
show 1 more comment
feedback

i think it's because a lot of loops use an Int type variable to do the counting, like

for (int i = 0; etc

and when you type, you actually speak it out in your head (like when you read), so in your mind, you say 'int....'

and when you have to make up a letter right after that 'int....' , you say / type the 'i' because that is the first letter you think of when you've just said 'int'

like you spell a word to kids who start learning reading you spell words for them by using names, like this:

WORD spells William W, Ok O, Ruby R, Done D

So you say Int I, Double d, Float f, string s etc. based on the first letter.

And j is used because when you have done int I, J follows right after it.

link
7  
i predates this syntax. – SLaks Nov 18 '10 at 2:55
1  
That's a great way to confuse the crap out of a kid; you really teach yours to spell like that?! – Lightness Races in Orbit Apr 30 '11 at 12:02
feedback

I think it's a combination of the other mentioned reasons :

For starters, 'i' was commonly used by mathematicians in their notation, and in the early days of computing with languages that weren't binary (ie had to be parsed and lexed in some fashion), the vast majority of users of computers were also mathematicians (... and scientists and engineers) so the notation fell into use in computer languages for programming loops, and has kind of just stuck around ever since.

Combine this with the fact that screen space in those very early days was very limited, as was memory, it made sense to keep shorter variable names.

link
feedback

i = iota, j = jot; both small changes.

iota is the smallest letter in the greek alphabet; in the English language it's meaning is linked to small changes, as in "not one iota" (from a phrase in the New Testament: "until heaven and earth pass away, not an iota, not a dot, will pass from the Law" (Mt 5:18)).

A counter represents a small change in a value.

And from iota comes jot (iot), which is also a synonym for a small change.

cf. http://en.wikipedia.org/wiki/Iota

link
feedback

Well from Mathematics: (for latin letters)

a,b: used as constants or as integers for a rational number
c: a constant
d: derivative
e: Euler's number
f,g,h: functions
i,j,k: are indexes (also unit vectors and the quaternions)
l: generally not used. looks like 1
m,n: are rows and columns of matrices or as integers for rational numbers
o: also not used (unless you're in little o notation)
p,q: often used as primes
r: sometimes a spatial change of variable other times related to prime numbers
s,t: spatial and temporal variables or s is used as a change of variable for t
u,v,w: change of variable
x,y,z: variables

link
feedback

Many possible main reasons, I guess:

  • mathematicians use i and j for Natural Numbers in formulas (the ones that use Complex Numbers rarely, at least), so this carried over to programming
  • from C, i hints to int. And if you need another int then i2 is just way too long, so you decide to use j.
  • there are languages where the first letter decides the type, and i is then an integer.
link
feedback

It comes from Fortran, where i,j,k,l,m,n are implicitly integers.

link
show 1 more comment
feedback

I commonly see the variables ii, jj, kk, mm, nn etc. used as counters in DSP code. The variables i and j left on their own are too easily confused with complex number notation. Counter variables l and ll are not commonly used because they are easily confused with the digit 1.

link
1  
TI-83+ Z-80 Basic. ;-) – Tim Feb 22 at 2:34
show 3 more comments
feedback

It definitely comes from mathematics, which long preceded computer programming.

So, where did if come from in math? My completely uneducated guess is that it's as one fellow said, mathematicians like to use alphabetic clusters for similar things -- f, g, h for functions; x, y, z for numeric variables; p, q, r for logical variables; u, v, w for other sets of variables, especially in calculus; a, b, c for a lot of things. i, j, k comes in handy for iterative variables, and that about exhausts the possibilities. Why not m, n? Well, they are used for integers, but more often the end points of iterations rather than the iterative variables themselves.

Someone should ask a historian of mathematics.

link
feedback

See everyone speaks the same language. No matter even if it is a programming language. :-)

link
feedback

Counters are so common in programs, and in the early days of computing, everything was at a premium...
Programmers naturally tried to conserve pixels, and the 'i' required fewer pixels than any other letter to represent. (Mathematicians, being lazy, picked it for the same reason - as the smallest glyph).
As stated previously, 'j' just naturally followed...

:)

link
24  
In the early days of computing, pixels didn't exist. – SLaks Nov 18 '10 at 2:55
1  
@Slaks, that is one winning comment. Just see the grin on my face reading it, and the votes. Nice! – ProfK Dec 5 '10 at 14:24
1  
...and thus, premature optimization was born! – Gerrat Feb 14 '11 at 14:53
show 1 more comment
feedback

i is for index and integer, and was in use in mathematics for sum/sigma notation long before COBOL and FORTRAN were invented. The next is j, k, l - in alphabetical order. Greek does not come into it.

It is that simple: Why does this question have a bounty?

link
3  
because i putted it. And the reason for that is that I did want to hear other opinions, why, is that a problem? – Carlos Nov 18 '10 at 16:18
1  
No problem. it is a question worth asking, but I was surprised at it having a bounty. – winwaed Nov 18 '10 at 16:27
show 1 more comment
feedback

Why i and j?

Because i comes in Summation.. (from Zack)

Why? (from SLaks)

i stands for Index (from SLaks)

...

watch this

link
feedback

I learned FORTRAN on a Control Data Corp. 3100 in 1965. Variables starting with 'I' through 'N' were implied to be integers. Ex: 'IGGY' and 'NORB' were integers, 'XMAX' and 'ALPHA' were floating-point. However, you could override this through explicit declaration.

link
feedback

It's interesting that so many people point to summation formulas in math. Certainly i and j are common, but I would say n is as common as i (and m as j if using n instead of i). This makes me think the Fortran answer is also onto something. Some earlier programmers chose the i,j,k over n,m,l and now it's just convention in programming. It seems stickier than summation conventions in math or physics.

link
1  
In math, m and n are more often used as bounds (as in, 0 <= i < m, sigma notation, or dimensions of a matrix / vector space; I'll give you series as an exception). Also look at David's comment to Zack re Lagrange. – Tobu Dec 7 '10 at 18:54
feedback

Flip open your calculus or physics text book. Take a good look at any series or formula. There's your answer!

link
2  
If the answer was that simple we wouldn't ask the question. – ProfK Dec 5 '10 at 14:38
5  
it really is that simple. the convention came into use way earlier than computers. – Paolo Bonzini Dec 5 '10 at 18:00
feedback

i comes from (i)ndex : good for arrays.

i comes from (i)ntegers : bad for Z = {set of all integers}

i comes from (i)ota : good for a change delta

i comes from (i)teration : I have other variables named i too!

'i' comes from all the C programming and the mathematics books we are taught in our childhood. That is where i comes from. That is why everyone sticks to 'i'.

link
feedback

I like to use c so my loops have c++ in them. :)

link
feedback

Increment: you're talking about a counter that typically increments, making 'i' a sense-making short form.

For an inner loop, j makes sense as it alphabetically follows i. Thus i is the outer loop, while j the inner.

link
feedback

I always like to pretend that we use ijk because they appear together in Edsger Dijkstra's name.

link
2  
Duplicate answer. – SLaks Dec 7 '10 at 23:42
feedback

I use 'c' so that I can write "c++" in code.

(for integers post/pre-increment doesn't matter)

link
4  
Wrong. Post/pre-increment matters for any datatype. – SLaks Dec 7 '10 at 23:38
5  
Please do not write things like "Wrong." or "You idiot." The rest of the comment was sufficient in both cases. – Dan Grossman Dec 8 '10 at 22:03
show 6 more comments
feedback

To save energy. Back when programming was first invented, computers typically displayed white text on black backgrounds, and the "i" character required the fewest number of pixels to be lit.

link
3  
Back when programming was first invented, pixels didn't exist. – SLaks Dec 7 '10 at 23:40
show 1 more comment
feedback
1 2

Not the answer you're looking for? Browse other questions tagged or ask your own question.