Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   General Discussion (https://thetfp.com/tfp/general-discussion/)
-   -   NEED HELP!!! mathematical possibilities question... (https://thetfp.com/tfp/general-discussion/99521-need-help-mathematical-possibilities-question.html)

barenakedladies 01-05-2006 12:41 PM

NEED HELP!!! mathematical possibilities question...
 
ok... i dont know how to figure thiis out.

If someone could show me a formula for this, i would appreciate it.

i have a 12 digit code. It can contain letters or numbers 0-9
(therefore 36 possible digits in each of the 12 spaces)

how do i figure out how many possibilities there are?


also anyone know of a random generator out there to generate possibilities?

Im trying to come up with something for my business with redeemable codes for online. (Award points)

alpha phi 01-05-2006 12:57 PM

wouldn't that be 36 to the 12th power
or 36*36*36*36*36*36*36*36*36*36*36*36=4,738,381,338,321,616,896
/just a guess

kutulu 01-05-2006 01:04 PM

as long as characters can be repeated throughout (as in aaaaaaaaaaaa is a valid code), that is correct.

barenakedladies 01-05-2006 01:24 PM

i did figure it out myself as well, you are correct.

4,738,381,338,321,616,896 different possibilities.

thats a lot. i believe quintillion.

is there any way to randomly generate different possibilities. anyone know of a program online?

xepherys 01-05-2006 01:37 PM

generate possibilities as in trying to brute force a correct number? There are plenty... look for a brute force password cracker, tell it that it's alphanumeric with 12-characters. *shrug*

Tachion 01-10-2006 04:58 PM

Quote:

Originally Posted by barenakedladies
i did figure it out myself as well, you are correct.

4,738,381,338,321,616,896 different possibilities.

thats a lot. i believe quintillion.

is there any way to randomly generate different possibilities. anyone know of a program online?


If you could generate a million a second it would take aproximately 150,000 years to finish, by my calculations.

Zeraph 01-10-2006 07:15 PM

Quote:

Originally Posted by Tachion
If you could generate a million a second it would take aproximately 150,000 years to finish, by my calculations.

Ya but a computer can generate way more than 1 per sec. :D

Tachion 01-10-2006 07:31 PM

Quote:

Originally Posted by Zeraph
Ya but a computer can generate way more than 1 per sec. :D


I said a MILLION per second.

Zeraph 01-10-2006 10:29 PM

Quote:

Originally Posted by Tachion
I said a MILLION per second.

Ah my bad :D

Reese 01-11-2006 03:03 AM

You're wanting to generate a random 12 digit number A-Z & 1-9 to put on the coupons right? If so I'd go with a random password generator. There's a web based one at http://www.winguides.com/security/password.php It's quick but it might not be as secure as you'd want for a business coupon code.

xepherys 01-11-2006 11:47 AM

I could whip something up in PHP pretty easily I'd think. You'd need a DB to store the generated codes and verify codes are unique, as well as disable them once they've been redeemed. Otherwise, the code generation would be easy enough, and the barcode generation should be easy as well with PHP classes and the gd library.

Do you need Code 39, Code 93, Standard 25, Interleaved 25?

Brickstone 02-02-2007 08:38 PM

HELP?
 
Here's one for ya.

1111123 is not one number, but 6 you see.

And if you get this clue in sum, you'll know where to head south from.

It's a clue in a treasure hunt - Help?

Nizzle 02-03-2007 03:07 AM

On any unix machine:


perl -e 'for($i=0;$i<12;$i++){print(("a".."z",0..9)[rand(0)*36])}'


All times are GMT -8. The time now is 11:39 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73