Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to find out how to come up with a x character string that can be made up of either numbers or letters to test a theory.

For example in a one character string, there are 36 possibilities: 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,1,2,3,4,5,6,7,8,9,0

This is easy to figure out, but how to I find out how many possibilities there are for a string that is x characters in length?

share|improve this question
I was a bit hasty to answer; questions like this are probably better suited to math.stackexchange.com – Mark Peters Mar 23 '11 at 17:32
Yeah, I thought it belonged in a more mathy section. Didn't know there was a stackexchange for math. :) – Melanie Mar 23 '11 at 17:35
Typical Mathematics question ! Must be moved from SO to math.stackexchange.com – bomslang Mar 23 '11 at 17:35

closed as off topic by bomslang, Mark Peters, Tim Post Mar 24 '11 at 13:03

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 1 down vote accepted

It's just AN, where A is the number of characters in your alphabet (i.e. 36) and N is the number of characters in your output string.

If you can't use a character more than once, then it is A! / (A-N)! where ! is the factorial operator.

share|improve this answer

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