Re: multiplication



On 30 Apr 2007 04:29:26 -0700, helPlease <devlinahello2@xxxxxxxxx>
wrote:

I want to multiply two very long integers (say of 20 digits).I am
storing them in character array.Then what mechanism should i follow
to mutiply two such numbers.If anybody has any suggestions please post.

Take a pencil and paper and multiply two four-digit numbers. Carefully
show **every** step. Notice that while the total number of steps is
dependent on the number of digits in the two numbers, each individual
step is dependent only on one digit from each number (and any
potential carry from the previous step).

As a preliminary step to multiplying, work out the algorithm to add
two numbers of arbitrary length. Then implement the algorithm in a
function and test extensively. Notice that the sum of two n-digit
numbers has at most n+1 digits.

Follow the same process for multiplication. Since you will need to do
some addition, make use of the function previously developed. Notice
that the product of two n-digit numbers can have up to 2n digits.

If/when you run into problems, post your code and ask specific
questions. Here is a starting hint. Decide if the elements of your
character array will contain the integer value or the character value
of the digits, '1' is not the same as 1. One simplifies input/output;
the other simplifies computation.

And please don't post the same question multiple times with different
subjects.


Remove del for email
.



Relevant Pages

  • Re: Assembly Language - Mathematics WITHOUT maths coprocessor
    ... The way we were taught to do this was to convert 1.2 to an integer, by multiplying it by 10 enough times to do so. ... The same is true with the denominator, which also needs to be "* 10" for it to all work out, but it's already "* 10" because it's in fixed point format, so we don't do anything to it. ... If character is a number, multiply x by 10 and then add that number. ... This is because so many of those digits aren't even going to make it into the final number that the error caused by not doing so is very very very small. ...
    (alt.lang.asm)
  • Re: Effective/Proper use of "regular expressions"
    ... parenthesized elements in your regular expression, ... from the set (unless the first character in the bracket expression is ... The range 0-9 is the set of all digits, ... a literal period followed by one or more digits". ...
    (comp.lang.tcl)
  • Re: inputting the ephemerides (SOLUTION!)
    ... the user manual input of control data, or the use of a control record, ... Somewhere along the way, I've lost the last float, which Terence calls F3. ... C STOPS ON TRAILING BLANK OR CHARACTER ... C NOW ONLY DIGITS ...
    (comp.lang.fortran)
  • Re: inputting the ephemerides (SOLUTION!)
    ... Defining the rules for field parsing has to match all the ... these are placed in the character string CWK). ... string stops the parsing and GOs to statement 7. ... Here the string CWK of sign, digits and a decimal point if present are ...
    (comp.lang.fortran)
  • Re: inputting the ephemerides (SOLUTION!)
    ... Defining the rules for field parsing has to match all the ... these are placed in the character string CWK). ... string stops the parsing and GOs to statement 7. ... Here the string CWK of sign, digits and a decimal point if present are ...
    (comp.lang.fortran)