between addition and multiplication
#14
(03/14/2011, 05:04 PM)nuninho1980 Wrote: I'm very interesting about operation "@". Smile but what's your code (pari/gp, maple...)?

Here's the C code. Feed this function three values:

m is a+b (don't give it m=0)
n is a*b
phi is a value between 0 and 1.

Sorry, the formatting (indenting) will disappear on this forum.

float wagm(float m, float n, float phi)
{
int i;
float p,q;
for (i=1;i<6;i++)
{
p = phi * (n-m) + m;
q = pow(n/m,phi) * m;
m = p;
n = q;
}
return p;
}

See my other post for a graph and for the extension to operations between multiplication and exponentiation.
Reply


Messages In This Thread
between addition and multiplication - by lloyd - 03/10/2011, 09:10 PM
RE: between addition and multiplication - by lloyd - 03/14/2011, 06:21 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Between addition and product ( pic ) tommy1729 9 19,043 06/25/2022, 09:34 PM
Last Post: tommy1729
Question Communitive Octonion Multiplication Catullus 1 3,576 06/24/2022, 08:44 AM
Last Post: JmsNxn
  A fundamental flaw of an operator who's super operator is addition JmsNxn 6 22,370 06/16/2022, 10:33 PM
Last Post: MphLee
  special addition tommy1729 0 5,656 01/11/2015, 02:00 AM
Last Post: tommy1729
  extension of the Ackermann function to operators less than addition JmsNxn 2 12,234 11/06/2011, 08:06 PM
Last Post: JmsNxn



Users browsing this thread: 2 Guest(s)