Top "Multiplication" questions

Multiplication is the mathematical operation of scaling one number by another.

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 …

c# get set multiplication
x86 assembly multiply and divide instruction operands, 16-bit and higher

I'm rather confused about how the multiply and divide operations work in x86 assembly. For example, the code below doesn't …

assembly x86 division multiplication
Extracting bits with a single multiplication

I saw an interesting technique used in an answer to another question, and would like to understand it a little …

c multiplication bit-manipulation
Multiplication function with recursion in Python

I need to write the function mult( n, m ) that should output the product of the two integers n and …

python function recursion multiplication negation
How can I create functions that handle polynomials?

I have these problems about polynomials and I've spent about 4 hours on this, but I just can't get it. I'm …

python polynomial-math evaluate multiplication
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 …

c++ c optimization division multiplication
Getting the high part of 64 bit integer multiplication

In C++, say that: uint64_t i; uint64_t j; then i * j will yield an uint64_t that has …

c++ assembly 64-bit multiplication
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 …

algorithm math matrix multiplication
Is MOD operation more CPU intensive than multiplication?

Why is MOD operation more expensive than multiplication by a bit more than a factor of 2? Please be more specific …

c++ division multiplication
How do you multiply two fixed point numbers?

I am currently trying to figure out how to multiply two numbers in fixed point representation. Say my number representation …

multiplication fixed-point