Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

85
votes
13answers
5k views

Is multiplication and division using shift operators in C actually faster?

Multiplication and division can be achieved using bit operators, for example i*2 = i<<1 i*3 = (i<<1) + i; i*10 = (i<<3) + (i<<1) and so on. Is it actually faster to use say ...
17
votes
7answers
681 views

Why does (int)(33.46639 * 1000000) return 33466389?

(int)(33.46639 * 1000000) returns 33466389 Why does this happen?
12
votes
2answers
243 views

Optimizing x64 assembler MUL loop

I'm writing math code which needs to multiply large numbers fast. It breaks down to multiplications of an array of integers with a single integer. In C++ this looks like this (on unsigned's): void ...
11
votes
7answers
2k views

How to multiply two big big numbers

You are given a list of n numbers L=. Each of them is either 0 or of the form +- 2^k, 0<=k<=30. Describe and implement an algorithm that returns the largest product of a CONTINUOUS SUBLIST ...
10
votes
6answers
485 views

Fast multiplication/division by 2 for floats and doubles (C/C++)

In the software I'm writing, I'm doing millions of multiplication or division by 2 (or powers of 2) of my values. I would really like these values to be int so that I could access the bitshift ...
9
votes
5answers
305 views

detecting multiplication of uint64_t integers overflow with C

Is there any efficient and portable way to check when multiplication operations with int64_t or uint64_t operands overflow in C? For instance, for addition of uint64_t I can do: if (UINT64_MAX - a ...
8
votes
5answers
138 views

On integer multiplication, overflow, and information loss

I'm reading through Chapter 3 of Joshua Bloch's Effective Java. In Item 8: Always override hashCode when you override equals, the author uses the following combining step in his hashing function: ...
8
votes
3answers
230 views

Predicting the number of digits of a multiplication

I need to find the number of digits of very large multiplications (about 300 digits each). I was wondering if there is a trick to predict the number of digits that the product will be without actually ...
7
votes
1answer
90 views

Moving out before brackets with XOR

If I had the sum of products like z*a + z*b + z*c + ... + z*y, it would be possible to move the z factor, which is the same, out before brackets: z(a + b + c + ... y). I'd like to know how it is ...
7
votes
4answers
362 views

Karatsuba algorithm too much recursion

I am trying to implement the Karatsuba multiplication algorithm in c++ but right now I am just trying to get it to work in python. Here is my code: def mult(x, y, b, m): if max(x, y) < b: ...
7
votes
5answers
5k views

How can i multiply and divide with only using bit shifting and adding?

How can i multiply and divide with only using bit shifting and adding?
6
votes
6answers
164 views

Most Efficient Way to Scale an Array in Java?

(Apologies if this has been asked before - I can't believe it hasn't, but I couldn't find one. Perhaps my search-fu is weak.) For years I've "known" that Java has no native function to scale an array ...
6
votes
4answers
190 views

Python list multiplication: [[…]]*3 makes 3 lists which mirror each other when modified

Why this is happening? I don't really understand: >>> P = [ [()]*3 ]*3 >>> P [[(), (), ()], [(), (), ()], [(), (), ()]] >>> P[0][0]=1 >>> P [[1, (), ()], [1, (), ...
6
votes
3answers
3k views

Strassen's algorithm for matrix multiplication

Can someone please explain strassen's algorithm for matrix multiplication in an intuitive way? I've gone through (well, tried to go through) the explanation in the book and wiki but it's not clicking ...
6
votes
3answers
2k views

Understanding Schönhage-Strassen algorithm (huge integer multiplication)

I need to multiply several 1000s digits long integers as efficiently as possible in Python. The numbers are read from a file. I am trying to implement the Schönhage-Strassen algorithm for integer ...
5
votes
4answers
1k views

Divide and Conquer Matrix Multiplication

I am having trouble getting divide and conquer matrix multiplication to work. From what I understand, you split the matrices of size nxn into quadrants (each quadrant is n/2) and then you do: C11 ...
5
votes
3answers
1k views

Error CS0051 (Inconsistent accessibility: parameter type 'Job' is less accessible than method 'AddJobs.TotalPay(Job)')

I compiled and ran the source code below successfully by omitting the totalFee field. How do I write totalFee into this program so that it will accurately calculate the total fee for each job (rate * ...
5
votes
4answers
1k views

Multiply rows of matrix by vector?

I'm optimizing a function and I want to get rid of slow for loops. I'm looking for a faster way to multiply each row of a matrix by a vector. Any ideas? EDIT: I'm not looking for a 'classical' ...
5
votes
4answers
709 views

quick/fast integer multiplication in ruby?

I am trying to make a quick/efficient Mandelbrot implementation in Ruby. A long long time ago, one way to speed it up was using fixed point integers instead of floats. So i made the following ...
5
votes
5answers
756 views

C language: #DEFINEd value messes up 8-bit multiplication. Why?

I have the following C code: #define PRR_SCALE 255 ... uint8_t a = 3; uint8_t b = 4; uint8_t prr; prr = (PRR_SCALE * a) / b; printf("prr: %u\n", prr); If I compile this (using an msp430 platform ...
4
votes
3answers
132 views

Fast multiplication of very large numbers in perl

I have 50,000 numbers (that could range from 0 to 50,000). And I need (product of these numbers) MOD 1000000007. The following code is so trivial, there should be other ways. Heard about "Divide and ...
4
votes
5answers
243 views

Is booth multiplication algorithm for multiplying 2 positive numbers?

Is booth algorithm for multiplication only for multiplying 2 negative numbers (-3 * -4) or one positive and one negative number (-3 * 4) ? Whenever i multiply 2 positive numbers using booth algorithm ...
4
votes
4answers
85 views

Computing rolling sums of stretches a vector with R

I have a long vector x, and another v, which contains lengths. I would like to sum x so that the answer y is a vector of length length(v), and y[1] is sum(x[1:v[i]]), y[2] is ...
4
votes
2answers
177 views

when two 16-bit signed data are multiplied, what should be the size of resultant?

I have faced an interview question related to embedded systems and C/C++. The question is: If we multiply 2 signed (2's complement) 16-bit data, what should be the size of resultant data? I've ...
4
votes
4answers
183 views

multiplication in C with out arithemetic operators

Is it possible to multiply two numbers with out using arithemetic operators using C.using left shift operator i can maultiple any number by 2 only.any other solutions?Please reply!
4
votes
3answers
365 views

Polynomial multiplication complexity reduction

I have been trying to figure tis ou for 3 days and have not gotten anywhere. I have to implement polynomial multiplication (multiply 2 quadratic equations). They look like: ( a1 x^2 + b1 x + c1 ) * ...
4
votes
4answers
772 views

long long vs int multiplication

Given the following snippet: #include <stdio.h> typedef signed long long int64; typedef signed int int32; typedef signed char int8; int main() { printf("%i\n", sizeof(int8)); ...
4
votes
6answers
894 views

Multiplying two long long ints C

I am working on a program in C as a part of Homework in which I have to get the product of two long numbers which are taken as character string. eg: 123456789021 and 132456789098. Since it is taken as ...
4
votes
4answers
2k views

Python long multiplication

I'm in need of an algorithm faster than the current normal python long multiplication , I tried to find a decent karatsuba implementation , but I can't. def main(): a=long(raw_input()) ...
4
votes
6answers
3k views

How do you multiply two 64-bit numbers in x86 assembler? [closed]

Possible Duplicate: How can I multiply two 64bit numbers using x86 assembly language? How do you multiply two 64-bit numbers in x86 assembler? This question is important for historical ...
4
votes
4answers
439 views

.NET multiplication optimization

Does the compiler optimize out any multiplications by 1? That is, consider: int a = 1; int b = 5 * a; Will the expression 5 * a be optimized into just 5? If not, will it if a is defined as: const ...
3
votes
7answers
2k views

How to implement multiplication without using multiplication operator in .NET

I want to implement multiplication of two integer numbers without using multiplication operator, in .NET public uint MultiplyNumbers(uint x, uint y) { } Any idea!
3
votes
2answers
304 views

CUDA __umul24 function, useful or not?

Is worth replacing all multiplications with the __umul24 function in a CUDA kernel? I read different and opposite opinions and I can't still make a bechmark to figure it out
3
votes
4answers
181 views

High Performance Multiplication/Evaluation in C#

Sorry for the vague thread title; hard to succinctly describe my question. I have a collection of a large number of objects (couple thousand), defined as... public class Item { public int ID; ...
3
votes
5answers
321 views

how to calculate (a times b) divided by c only using 32-bit integer types even if a times b would not fit such a type

Consider the following as a reference implementation: /* calculates (a * b) / c */ uint32_t muldiv(uint32_t a, uint32_t b, uint32_t c) { uint64_t x = a; x = x * b; x = x / c; return ...
3
votes
3answers
382 views

Double multiplication giving rounded results

double a = 2451550; double b = .407864; double c= a*b; cout<<c; I was expecting the results to be "999898.9892" but getting "999899". I need the actual unrounded result.Please suggest.
3
votes
7answers
860 views

Fast multiplication of values in an array

Is there a fast way to multiply values of a float array in C++, to optimize this function (where count is a multiple of 4): void multiply(float* values, float factor, int count) { for(int i=0; i ...
3
votes
4answers
2k views

Fast multiplication of very large integers

How to multiply two very large numbers greater than 32 characters for example multiplication of 100! with 122! or 22^122 with 11^200 by the help of divide and conquer, do any body have java code or ...
2
votes
4answers
77 views

Strange assignment / multiplication operator behaviour in C++

Could somebody please explain me wth is wrong with my operators: Matrix3D Matrix3D::operator*(Matrix3D& m) { Matrix3D ret; for(int i=0;i<4;i++) { for(int j=0;j<4;j++) { ...
2
votes
2answers
76 views

Matlab: Multiplying select rows every nth interval

I have a 63row x 7column matrix. xmax=63; ymax=7; for i=1:xmax for j=1:ymax n=(i-1)*ymax+j; matrix(i,j)=n; end end 1 2 3 4 5 6 7 8 9 ...
2
votes
3answers
148 views

algorithm to simulate multiplication by addition

How to design an algorithm to simulate multiplication by addition. input two integers. they may be zero, positive or negative..
2
votes
2answers
239 views

Speeding up a matrix computation using parallel processing in C++?

I'm trying to compute the following: Y = Y0 - ( Un.(A*Y0) + Vn.(Y0*Z) )*dt in the fastest/most efficient manner possible where Y0, Un, Vn, A, and Z are matrices dimensioned on the order of 300 X ...
2
votes
2answers
194 views

Deepcopy on nested referenced lists created by list multiplication does not work

As much as I love Python, the reference and deepcopy stuff sometimes freaks me out. Why does deepcopy not work here: >>> import copy >>> a = 2*[2*[0]] >>> a [[0, 0], [0, ...
2
votes
3answers
549 views

How to perform multiplication, using bitwise operators?

I am working through a problem which i was able to solve, all but for the last piece - i am not sure how can one do multiplication using bitwise operators: 0*8 = 0 1*8 = 8 2*8 = 16 3*8 = 24 4*8 ...
2
votes
2answers
597 views

Multiplication algorithm for abritrary precision (bignum) integers

I'm writing a small bignum library for a homework project. I am to implement Karatsuba multiplication, but before that I would like to write a naive multiplication routine. I'm following a guide ...
2
votes
3answers
154 views

Python basic maths

My friend wrote up this script for me to calculate the quantity of construction materials needed for a theoretical site. It basically takes 2 numbers and increases them independently until the large ...
2
votes
3answers
939 views

Fast Multiplication

I'm writing code for a microprocessor with fast integer arithmetic and not so fast float arithmetic. I need to divide an integer by a number from 1 to 9 and convert result back to integer. I made a ...
2
votes
2answers
138 views

How many floating-point operations for Strassen's algorithm for a matrix of size k x k?

I am trying to understand this analysis of Strassen's algorithm for multiply k x k matrices. But I am still not too sure how many operations are invovled. Can someone help clarify this?
2
votes
3answers
186 views

Is there an easy way to find two values that, when multiplied together, produce an exact bit pattern?

For testing purposes, I need to find two 64-bit integer values that exactly multiply to a 128-bit intermediate value with a specific bit pattern. Obviously, I can generate the desired intermediate ...
1
vote
1answer
16 views

IEEE 754-2008 standard order preserved under multiplication

In the IEEE standard for floating point arithmetic is the ordering of floating point numbers preserved under multiplication. For instance, let a, x and y be floating point numbers is it guaranteed ...

1 2 3