Advanced Math/Algorithm

Advertisement


Question

Algorthm EXP 24 size
Please see the attached JPG file.

Thanks

Answer
// written in C++
#include <stdio.h>

int exp(int n)
{
 int i=0;  // counter

 while ((n % 2) == 0)  // the "n % 2" gives "mod(n,2)"
  {                    // that is, 1 if odd and 0 if even
   n = 1.0*n/2;   //  1.0 there to make n real, not an integer
   i++;
  }
  return (i);
 }


void main()
{
 printf ("%d", exp(24));
}

Now this procdure returned the number of times that two divides into the number.  For example, if we had passed n as 2, as in exp(2), we would have gotten 1.  Since mod(1,2) = 1, that is all it does and a 1 is returned.

If we passed 48 as n, n goes to 24 and i goes to 1;
n goes to 12 and i goes to 2,
n goes to 6 and i goes 3,
n goes to 3 and i goes to 4,
and that is when it ends.

From what is here, it can be seen that I passed it 24.

From math, I know that ln(n)/ln(2) is the same as log(base2)(n).
The integer portion of a number will be the power of 2 that is the highest and less than n.  This is the maximum number of times that 2 can divide, for if the number of times were any higher, the number would be at least one more power of 2.

Scott A Wilson

Expertise

I can answer any question in general math, arithetic, discret math, algebra, box problems, geometry, filling a tank with water, trigonometry, pre-calculus, linear algebra, complex mathematics, probability, statistics, and most of anything else that relates to math. I can even tell you it takes me over 2,000 steps to go a mile, but is that relevant?

Experience

Experience in the area; I have tutored people in the above areas of mathematics for almost two years in AllExperts.com. I have tutored people here and there in mathematics since before I received a BS degree almost 25 years ago. In just two more years, I received an MS degree as well, but more on that later. I tutored at OSU in the math center for all six years I was there. Most students offering assistance were juniors, seniors, or graduate students. I was allowed to tutor as a freshman. I tutored at Mathnasium for well over a year. I worked at The Boeing Company for over 5 years. I received an MS degreee in Mathematics from Oregon State Univeristy. The classes I took were over 100 hours of upper division credits in mathematical courses such as calculus, statistics, probabilty, linear algrebra, powers, linear regression, matrices, and more. I graduated with honors in both my BS and MS degrees. Past/Present Clients: College Students at Oregon State University, various math people since college, over 7,500 people on the PC from the US and rest the world.

Publications
My master's paper was published in the OSU journal. The subject of it was Numerical Analysis used in shock waves and rarefaction fans. It dealt with discontinuities that arose over time. They were solved using the Leap Frog method. That method was used and improvements of it were shown. The improvements were by Enquist-Osher, Godunov, and Lax-Wendroff.

Education/Credentials
Master of Science at OSU with high honors in mathematics. Bachelor of Science at OSU with high honors in mathematical sciences. This degree involved mathematics, statistics, and computer science. I also took sophmore level physics and chemistry while I was attending college. On the side I took raquetball, but that's still not relevant.

Awards and Honors
I earned high honors in both my BS degree and MS degree from Oregon State. I was in near the top in most of my classes. In several classes in mathematics, I was first. In a class of over 100 students, I was always one of the first ones to complete the test. I graduated with well over 50 credits in upper division mathematics.

Past/Present Clients
My clients have been students at OSU, people nearby, friends with math questions, and several people every day on the PC, and you're probably make one more.

©2012 About.com, a part of The New York Times Company. All rights reserved.