What identity is this? (Division to multiplication )

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 2K views
musiclover55
Messages
12
Reaction score
0
This isn't a homework help issue, I just want to know what identity(?) this is.

a/b to ab

or A^2/B^2 to (A^2)(B^2)
 
Physics news on Phys.org
musiclover55 said:
This isn't a homework help issue, I just want to know what identity(?) this is.

a/b to ab

or A^2/B^2 to (A^2)(B^2)
There is no identity that converts a/b to ab, nor is there one to convert A2/B2 to A2B2.

What you might be thinking of is this one:

$$ \frac{a}{b} = a \cdot \frac{1}{b}$$

In other words, dividing by a number b is the same as multiplying by the reciprocal of b (1/b).
 
Although this probably isn't what you're looking for, there is a way to implement division or more specifically 1/b by iterating multiplications and additions via Newton Raphson method, but this seems unlikely to be what you're looking for.

For 1/b the iternation is:

xi+1 = xi (2 - b xi)

This converges quadratically. For integers, usually a table of bytes is used to get the initial approximation.
 
Yea, thanks everyone. I thought that was possible, but obviously it's not lol.