Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Education > Math Undergrad > Re: Programming...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 57 of 175 Topic 5182 of 5610
Post > Topic >>

Re: Programming skills required by mathematicians?

by Marshall <marshall.spight@[EMAIL PROTECTED] > Jul 1, 2008 at 10:46 AM

On Jul 1, 7:40 am, hru...@[EMAIL PROTECTED]
 (Herman Rubin) wrote:
> In article <ddfb7$48688db5$82a1e228$25...@[EMAIL PROTECTED]
>,
>
> I have programmed in Fortran, C, and assembler for
> different machines.

Yes, those are sure good ones. Fond memories. Have
you had a chance to work with any of the languages
that have come out in the last 35 years? Some of them
are quite good.


> I am quite aware of even the
> fact that efficiency for subroutines requires taking
> into account the differences in the different machines,
> and I have also stated that I can see how to produce
> a somewhat high level assembler language easy to use.

Certainly high level assembler is easier to use
than low level assembler. Or machine language. But
it will be harder to use than pretty much anything else.


> Those who think HLLs are such a great idea, here is a
> challenge.  The function I am giving arises naturally,
> and it is quite difficult to do EFFICIENTLY in any HLL.

One might have an application that has to respond in
such-and-such a way within x number of milliseconds.
But "efficiency" by itself is not a goal for software
development. It might be a means to an end, but never
a goal in its own right.


> Let x be a positive real number, whose binary expansion
> is x = \sum a_i/2^i, a_i = 0 or 1.  Then
>
>         f(x) = \sum i*a_i/2^i.
>
> I have done some work on methods of generating non-uniform
> random variables from uniform bits.  There are some technical
> re****ts available from the Purdue Statistics Department.
> Among them are some I call "infinite precision", in that
> no computer roundoff is involved.  The easiest one of these
> is to generate the density 2x from 0 to 1.  The entire
> algorithm is
>
>         I = distance to the first 1 in a random bit stream;
> discard this part of the bit stream
>         X = U with the I-th bit after the binary point
> changed to 1.
>
> Alas, few of these are efficient, except possibly on an FPGA,
> but the amount of work is finite random for all distributions
> in any number of dimensions with lower semi-continuous density.
>
> I have a recent paper with Brad Johnson on acceptance-replacement
> generation of exponential and normal random variables, using
> exponentials to test and reuse of successful test exponentials.
> These vectorize or parallelize well if one changes the "control"
> part of the algorithm somewhat, and that consideration also went
> into the design of the algorithm.

So, how many times is this code going to get executed, and
in what application, and in what context? Unless the answers
are severe, the correct course of action is to code it in
the most straightforward way and forget it.


> I do know something about getting the power of the machine, and
> doing operations beyond the low precision hardware.  Even if only
> partial, there should be a convenient way of including assembler
> instructions in a program without losing "optimization"; I have
> done that on the CYBER 205.  I have also in my files a design for
> a decent quick assembler for the 780; I cannot find what I did
> on the 205, but I remember some of it, including the most complicated
> single one.

I never worked with the CYBER, but I did a lot of coding in
Fortran on the good ol' 780. But you do know, don't you, that
those days are gone? Not only are those machines obsolete,
but the companies that made them are largely forgotten.
I'm sure there are people reading this who have never heard
of Control Data because they were born after it ceased to
be a computer company. DEC was acquired by a bigger
fish ten years ago which was then itself consumed by an
even larger fish. Today my iPhone has more than 100 times
the computing power of a 780.

The idea of assembly code inline in high level code made
sense in the 1980s but not since. The idea of hand-coded
assembly routines for speed made a lot of sense in the
1990s, for performance-critical inner loops anyway. There
are still a few scant places where that idea makes sense,
but they are getting fewer and fewer. It is harder every
year to outperform the compiler, and there is less reason
every year to try.

I used to write assembly code for some different Adobe
apps in the early 1990s: Photoshop and Premiere. The
processor being targeted was the 486, and there was
a nice chart you could flip through and see how many
cycles each instruction was. You could come up with
different approaches, sum up the cycle count, and
compare.

When the Pentium came out, that got a lot harder.
Now there was a pipeline, and the cycle count wasn't
so straightforward. You might be able to pair these
two instructions, or not.

These days the situation is ridiculous, with very long
pipelines, multiple execution units, etc. etc. and you
can't even *get* a chart.


> One danger of HLLs is that the user has no idea
> of how long something will take.

That's just simply not true. Languages like C++ and
Java have quite transparent performance models; in
fact this may even be a good part of why they're
so successful. Even when using something wildly
abstract like SQL, one can still get an execution plan
out of the engine, and do various tweaks to change
it. Not that one ever has much need to.


> As for gotos, I find them easy to use,
> and spaghetti code is best for spaghetti algorithms.

Sure, gotos are easy to write, but what's usually im****tant
for code is that it be easy to read and easy to maintain,
and gotos are anathema to that.


Marshall
 




 175 Posts in Topic:
Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 01:40:27 
Re: Programming skills required by mathematicians?
"Nasser Abbasi"  2008-06-25 02:40:34 
Re: Programming skills required by mathematicians?
"David N. Williams&q  2008-06-25 10:18:44 
Re: Programming skills required by mathematicians?
Jaap Spies <j.spies@[E  2008-06-25 13:20:06 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-25 12:40:45 
Re: Programming skills required by mathematicians?
translogi <wilemien@[E  2008-06-25 05:05:32 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-25 15:23:41 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-26 08:34:42 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-28 16:11:45 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-30 09:30:56 
Re: Programming skills required by mathematicians?
"Peter Webb" &l  2008-06-26 01:45:26 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-25 12:09:40 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-26 11:49:51 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 17:14:18 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-26 11:51:57 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 17:16:59 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 10:46:51 
Re: Programming skills required by mathematicians?
Jaap Spies <j.spies@[E  2008-06-25 22:06:56 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 11:12:08 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-25 22:04:08 
Re: Programming skills required by mathematicians?
Jaap Spies <j.spies@[E  2008-06-26 22:05:59 
Re: Programming skills required by mathematicians?
toni.lassila@[EMAIL PROTE  2008-06-26 03:57:20 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-26 14:59:09 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-28 16:25:36 
Re: Programming skills required by mathematicians?
"evw@[EMAIL PROTECTE  2008-06-26 04:45:02 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-26 15:04:58 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 17:15:43 
Re: Programming skills required by mathematicians?
"evw@[EMAIL PROTECTE  2008-06-26 08:39:07 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-26 16:28:41 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-26 23:35:04 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-26 20:03:32 
Re: Programming skills required by mathematicians?
rjf <fateman@[EMAIL PR  2008-06-26 21:27:20 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-27 00:55:33 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-26 22:59:16 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-27 10:46:00 
Re: Programming skills required by mathematicians?
Phil Hobbs <pcdhSpamMe  2008-06-27 11:55:01 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-26 23:01:35 
Re: Programming skills required by mathematicians?
Aatu Koskensilta <aatu  2008-06-28 18:59:17 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-27 09:46:01 
Re: Programming skills required by mathematicians?
Aatu Koskensilta <aatu  2008-06-28 18:24:07 
Re: Programming skills required by mathematicians?
rAgAv <ragav.payne@[EM  2008-06-28 03:38:06 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-06-28 12:01:11 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 08:41:54 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 09:08:27 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 14:34:21 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-06-28 21:16:42 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-06-30 09:39:34 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-01 10:40:34 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-28 21:12:28 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-06-29 19:25:22 
Re: Programming skills required by mathematicians?
rjf <fateman@[EMAIL PR  2008-06-29 19:54:22 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-06-30 00:14:00 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-06-30 05:14:33 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-01 08:55:11 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-01 12:16:01 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-02 10:35:05 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-01 10:46:20 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-02 10:49:24 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-07-04 12:50:25 
Re: Programming skills required by mathematicians?
goto <goto@[EMAIL PROT  2008-07-04 11:55:41 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-02 16:50:01 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-03 09:47:04 
Re: Programming skills required by mathematicians?
harper@[EMAIL PROTECTED]   2008-07-07 12:03:38 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-01 13:27:07 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-02 18:01:52 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-03 09:54:12 
Re: Programming skills required by mathematicians?
Aleksej Saushev <asau@  2008-08-03 15:08:28 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-02 08:35:38 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-03 09:07:30 
Re: Programming skills required by mathematicians?
"zzbunker@[EMAIL PRO  2008-07-03 04:30:34 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-03 08:26:31 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-03 09:33:37 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-03 11:25:12 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 12:24:16 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 12:34:24 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 13:16:21 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 13:50:04 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 14:08:05 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 17:18:10 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 17:58:26 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 19:03:33 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 19:46:53 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 20:02:52 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-04 20:28:18 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-07 10:06:24 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-04 20:38:23 
Re: Programming skills required by mathematicians?
goto <goto@[EMAIL PROT  2008-07-05 15:27:04 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-10 09:27:43 
Re: Programming skills required by mathematicians?
Nick <Nick.Spam@[EMAIL  2008-07-10 16:41:51 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-11 09:30:32 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-11 18:50:21 
Re: Programming skills required by mathematicians?
stevendaryl3016@[EMAIL PR  2008-07-12 11:24:16 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 20:37:52 
Re: Programming skills required by mathematicians?
stevendaryl3016@[EMAIL PR  2008-07-13 04:53:33 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-13 09:11:19 
Re: Programming skills required by mathematicians?
stevendaryl3016@[EMAIL PR  2008-07-14 04:21:30 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-14 10:20:05 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-14 16:45:02 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-14 10:08:15 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-14 10:13:52 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-11 16:54:59 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-16 16:30:32 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-11 17:04:27 
Re: Programming skills required by mathematicians?
Nick <Nick.Spam@[EMAIL  2008-07-12 11:18:26 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 10:56:02 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-16 16:53:45 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-12 08:56:47 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 19:54:14 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-14 10:14:10 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-12 09:23:01 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-12 17:17:55 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-12 21:15:01 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 17:31:39 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 17:45:05 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 18:10:44 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-12 18:24:05 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-13 09:09:28 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-13 08:17:13 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-13 13:18:57 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-07-13 08:29:28 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-13 12:04:31 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-14 02:31:46 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-14 09:54:26 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-14 10:17:59 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 14:33:52 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:35:27 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-18 07:59:03 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 10:41:05 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 10:41:38 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 10:55:35 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 16:03:57 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-14 11:20:24 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-15 09:31:24 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 16:46:16 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:50:37 
Re: Programming skills required by mathematicians?
harper@[EMAIL PROTECTED]   2008-07-17 09:02:27 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-17 10:01:08 
Re: Programming skills required by mathematicians?
goto <goto@[EMAIL PROT  2008-07-17 12:31:55 
Re: Programming skills required by mathematicians?
harper@[EMAIL PROTECTED]   2008-07-18 09:34:15 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 12:23:41 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 16:30:31 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-14 13:24:52 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-14 16:41:43 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-14 18:03:47 
Re: Programming skills required by mathematicians?
"zzbunker@[EMAIL PRO  2008-07-14 18:41:10 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-07-15 01:08:55 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-15 17:54:40 
Re: Programming skills required by mathematicians?
Jason Glumidge <Jason.  2008-07-15 01:20:04 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-15 03:41:15 
Re: Programming skills required by mathematicians?
Frederick Williams <fr  2008-07-15 15:20:53 
Re: Programming skills required by mathematicians?
Marshall <marshall.spi  2008-07-15 09:08:07 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-15 09:16:36 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:16:58 
Re: Programming skills required by mathematicians?
Pubkeybreaker <pubkeyb  2008-07-15 10:48:49 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:26:32 
Re: Programming skills required by mathematicians?
herbzet <herbzet@[EMAI  2008-07-16 01:33:43 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-16 09:53:25 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-16 09:02:38 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-17 09:33:50 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-16 09:19:54 
Re: Programming skills required by mathematicians?
Han de Bruijn <Han.deB  2008-07-17 09:41:59 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-17 09:51:01 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-17 09:56:07 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-18 06:09:43 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-18 06:14:23 
Re: Programming skills required by mathematicians?
hrubin@[EMAIL PROTECTED]   2008-07-18 10:01:51 
Re: Programming skills required by mathematicians?
julio@[EMAIL PROTECTED]   2008-07-18 07:25:55 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-18 10:05:35 
Re: Programming skills required by mathematicians?
Herman Jurjus <hjurjus  2008-07-18 19:37:25 
Re: Programming skills required by mathematicians?
Antoine Hersen <antoin  2008-07-18 10:31:26 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-19 09:46:26 
Re: Programming skills required by mathematicians?
umumenu@[EMAIL PROTECTED]  2008-07-19 14:09:51 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-20 07:45:07 
Re: Programming skills required by mathematicians?
umumenu@[EMAIL PROTECTED]  2008-07-21 04:26:52 
Re: Programming skills required by mathematicians?
aruzinsky <aruzinsky@[  2008-07-21 08:21:07 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Fri Dec 5 10:02:26 CST 2008.