answersLogoWhite

0


Best Answer

By Euler's formula, e^ix = cosx + i*sinx

Taking natural logarithms, ix = ln(cosx + i*sinx)

When x = pi/2, i*pi/2 = ln(i)

But ln(i) = log(i)/log(e) where log represents logarithms to base 10.

That is, i*pi/2 = log(i)/log(e)

And therefore log(i) = i*pi/2*log(e) = i*0.682188 or 0.682*i to three decimal places.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

So your (log) is a log base 10. First let's look at the Natural Log of i. Then we can use a conversion to convert that to log base 10. If we use the notation A*e^(i*θ) notation for complex numbers, where e is the base of natural logarithms, and θ is an angle (in radians) measured from the positive real axis (counterclockwise), and A is the magnitude (straight line distance from the origin). So i is magnitude 1, positioned 90° (pi/2 radians). So now we represent i as e^(i*pi/2). Take the natural log of this, and we have ln(e^(i*pi/2)). We can take the power down, in front of the logarithm and have (i*pi/2)*ln(e), and ln(e) is just 1, so we have ln(i) = (i*pi/2).

But we want log (base 10). To get log (base 10) of x, you can do ln(x)/(ln(10)). So pi/2 = 1.5708, and ln(10) = 2.30259. Divide these and you get 0.68219, but remember it was multiplied by i.

So Log[base 10] of i = i*0.68219

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why is log i 0.682i Where i is the imaginary number sqr rt -1?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How would you write square root -30?

sqr(-30) is i*sqr(30) We use i to represent the sqr(-1) because it is called an imaginary number. It takes an imagination to work with it. It is not fictitious.


What number raised to the fourth power equals 625?

54 = 625 (to find out sqr rt 625 then sqr rt again)


What is 6 sin 30 equals?

The sin of 30 is sqr(3)/2 so 6 * sqr(30) is 6 * sqr(3)/2 this is also 6/2 * sqr(3) which simplifies to 3 * sqr(3) which is approximately 5.19615242


The area of a regular pentagon is 600 cm Calculate the length of one side of the pentagon?

Area is not measured in centimeter units. It may be guessed that the question should have indicated the area in square centimeters.The area of a regular pentagon is given as:A = s * s * sqr(25 + 10*(sqr(5)) / 4Solve for s:s = 2 * sqr (A / sqr(25 + 10*(sqr(5)))Insert the area of 600 square centimters:s = 2 * sqr (600 cm*cm / sqr(25 + 10*(sqr(5)))s = aproximately 19.67 cm


231 sqr meter to sqr feet?

231 m2 is about 2,486.5 square feet.


Number generation for Adam in c?

#include<stdio.h> #include<conio.h> #include<math.h> void main() { int a,s,e,sqr,digit,rev=0,d,r=0,sroot,i; clrscr(); printf("Enter starting limit:"); scanf("%d",&s); printf("Enter ending limit:"); scanf("%d",&e); printf("Adam number series:\n"); for(i=s;i<=e;i++) { a=i; sqr=i*i; while(sqr!=0) { digit=sqr%10; rev=rev*10+digit; sqr=sqr/10; } sroot=sqrt(rev); while(sroot!=0) { d=sroot%10; r=r*10+d; sroot=sroot/10; } if(r==a) printf("%d\n"a); sqr=0; digit=o; rev=0; d=0; sroot=0; r=0; } getch(); }


Which is the correct notation for the complex number 113-square root-68?

113-2i sqr 17


What is SQR?

x=81


What are two numbers that multiplies to 100 and adds up to 10?

110


What is sqr 81x4?

x=81


What square number can give an answer bigger than 700 but smaller than 800?

any numbers between sqr(700) or sqr(800), or between approximately 26.457 and 28.284 integers include 27 and 28, 27^2=729 and 28^2=784


Write a program to compute the average of the squares of the numbers from 1 to 10?

main() { sum=0; float avg=0.0; int sqr[10]; for(i=1;i<=10;i++) { sqr[i]=(i*i); } for(i=1;i<=10;i++) { sum=sum+sqr[i]; } avg=sum/10; dts it !!!