MickE
Dec 26 2007, 05:29 PM
| | I remember my lecturers telling me that under no circumstances we may ever write sqrt(some negative) it does not exist, it is impossible. it is true that iČ=-1 but that's something different
you can think of this as a plane, the x axis is the real axis (a+i*b -> a is the real part) and the y-axis is the imaginary axis (b is the imaginary part) so if you have i as a number, you end up on the imaginary axis. this can be seen as a rotation of the unity point ( 1+i*0 or 1) this is a rotation over 90°, if you do this again (i*i) you rotate again over 90°, so you end up at -1 (+i*0) so you can write iČ=-1, but the square root of a negative number... that does not exist!
but this is rather advanced  |
Reply
musicmaza
Dec 26 2007, 06:14 PM
This is very simple and I knew already knew it,i studied this 5 years ago and I still use imaginary numbers in my studies.But this topic is helpful for those who haven't studied imaginary numbers or know very little about it. Well this is really good topic about imaginary numbers.
Reply
suberatu
Dec 27 2007, 12:03 AM
Informative post, unfortunately I pretty much knew things contained in there prior to reading it. I do however have two questions. 1) I once saw a problem in a precalculus textbook asking to find the square root of i. How would one go about figuring this out this? 2) I'm not sure if complex numbers are outside the scope of this topic, but what are they exactly? I remember once hearing someone talk about graphing 3 dimensional objects (e.g.: a cube) on the complex plane. He said that it might seem strange to do this at first, but it is sometimes done in certain sciences (like physics) not to measure the objects, but to measure degree of complexity (  ).
Reply
jlhaslip
Dec 27 2007, 01:15 AM
Complex Numbers are mathematical elements which are (somewhat) connected to Imaginary Numbers. I'll let you discover the concepts yourself from this Wikipedia link: http://en.wikipedia.org/wiki/Complex_numberIt has been a long time since I have dealt with any of this stuff, so I might make an error trying to explain what I know (or is that 'knew'?) To me, Imaginary Numbers are the ones missing on your Pay Cheque...
Reply
Recent Queries:--
every day use of imaginary numbers - 199.26 hr back. (1)
-
what is the ones digit of all the first 2006 prime numbers mulitplied together - 354.08 hr back. (2)
-
everyday use of imaginary numbers - 845.22 hr back. (1)
Similar Topics
Keywords : imaginary, numbers
- Index In A Mysql Database
Make the numbers follow (3)
I Need Help
it's about roman numbers in c/c++ (7) /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> hy.... i really
need help... we have to make a programm that checks if input string is roman number...and i'm
beginner in c/c++ so i don't really know how to do this.... so if anyone can help me,please....
THANK YOU.... /rolleyes.gif" style="vertical-align:middle" emoid=":rolleyes:" border="0"
alt="rolleyes.gif" />....
I Keep Seeing The Same Numbers Everywhere
(11) i didnt know where to post it.. move it if its in the wrong place (: but here it goes.. i keep
seeing the same numbers everywhere 918 at first i was just kinda like OH COOL, but now its kinda
freaking me out, as im reminising about all the times ive seen it fact: my birthday is 09 - 18 &
idk i keep seeing it everywhere.. is it a sign of some kind? idk.. its just weird. everytime i
decided to look at the clock, its as if the time freezes at 9:18 and i just find it weird// any
ideas why this is happening?....
Hard Decisions
(Each week I'll post an imaginary scenario and members can discuss (4) Welcome to "Hard Decision of the Week!" This is an endeavour I want to try to keep up every
week. It's about hard decisions and determining what you really value. Each week I'll post
an imaginary scenario where you have to make a decision. (And yes, the decision is a pretty hard
one.) You can discuss the decision itself, or what it values. (And please don't flame each
other, otherwise I'll get into trouble for starting the topic.) Here's this week's
decision, one that only got about 6 responses in Yahoo Answers, where I originally posted i....
Most Efficient Code To Get Prime Numbers
(7) Can anyone write a more efficient code than this to get the prime numbers from 1 -999? //
Assignment: sieve.cpp // Purpose: To write the most efficient program // that outputs prime
numbers. #include #include #include // declare constant MAX_NUMBER to be the # of arrays. const
MAX_NUMBER = 1000; // declare array primes. bool primes ; // function prototypes void
initializeArray(); void findMultiples(); void printSubscripts(); int main() { // call to functions
initializeArray(); findMultiples(); printSubscripts(); return 0; }
//*****************************....
Sms With Text As Sender Address And Not Numbers!
how is that ?? (1) I receive lots of SMS from the operators with some TEXT as sender number instead of mobile numbers
as the sender address. Please let me know how is that possible from a mobile phone or any other GSM
modem. Is it that they modify the SMS message header or do any other tweaks to achieve this. Share
your ideas about this hack !!!....
What To Look For In A Pc...
You're going to buy a pc but what do all those numbers mean? (7) Ok, you need a new or just a computer, but dont know which one to buy... I will give you a few tips
on what they mean to help you choose the right one for you... Use the chart below to choose what
computer you may need. Key 1024MB = 1GB Everyday Use: Check e-mail, surf the net; etc. 512MB Ram
1.1GHZ CPU Inbuilt graphics ________________________ Video Editing: Making home videos; etc.
1GB Ram + 1.8GHZ CPU Dedicated 128MB Graphics + ________________________ Gaming: Playing the
latest online games; etc. 1GB Ram (Minimum) 1.8GHZ CPU Dedicated 256MB Grap....
Letters And Spellings Of Numbers
Letters 'a', 'b', 'c' & 'd' and sp (5) QUOTE This is awesome - I bet you didn't know this... Letters 'a', 'b',
'c' & 'd' do not appear anywhere in the spellings of 1 to 99 (Letter
'd' comes for the first time in Hundred) Letters 'a', 'b' & 'c'
do not appear anywhere in the spellings of 1 to 999 (Letter 'a' comes for the first
time in Thousand) Letters 'b' & 'c' do not appear anywhere in the spellings of 1
to 999,999,999 (Letter 'b' comes for the first time in Billion) source : em....
How I Shall Scan Prime Numbers..
that is 1,3,5,7,11,13,17,19... (4) I want to scan prime numbers ,have you logic to solve this problem? here is example of even
numbers: CODE
----------------------------------------------------------------------------------------------------
---------- void main (void) {clrscr(); int a; printf("input any
no."); scanf("%d"&a); if(a%2=0) {printf("the number is
even"); getch(); }
----------------------------------------------------------------------------------------------------
-------- Now I want to scan prime numbers....
Is It Possible To Weigh Random Numbers?
(6) I'm making an RPG so I need to use a lot of random numbers. Right now I'm thinking about
stat increases after level-ups. I want to write a method that does something like "return a random
number from 0 to 4 inclusive, but make it most likely to be 1 or 2." Does anybody know how I could
go about implementing something like that?....
Showing Numbers Of Mysql Entries In A Database Table
It should be easy, but I don't know how... (7) I have a database, and need to know how to show the numbers of entries. So, if there are 10 entries
in the selected database table, it will show the number 10 . I'm pretty sure this should be
easy, but I don't know how to do it. Can someone tell me? /smile.gif"
style="vertical-align:middle" emoid=":)" border="0" alt="smile.gif" />....
Showing Numbers With Mysql
(5) I have a int column with numbers, and I want to show only the numbers between 5 and 20 in that
column. So my list would be like this: CODE 5 7 15 16 I know how to only show numbers that
are less than 20 or greater than 5, but I can't manage to combine those two (Less than 20 AND
greater than 5). So I guess it would be something like this: CODE SELECT * FROM `table`
WHERE `introw` >= 5 && <= 20 How can I do that?....
Ordering Numbers With Mysql?
(4) I am making a MySQL-driven list. It can be ordered by name or by a number in the table. However, it
orders the numbers like this: CODE 1 2 23 3 456 7 9 98 But I want the numbers to be ordered
like this: CODE 1 2 3 7 9 23 98 456 How can I do that?....
Memorise Large Numbers
memorize numbers : Maths-Alphabet Trick to memorize numbers (8) Memorize numbers : How to memorize large numbers? Seems pretty much impossible
isn't it ? we can easily remember peoples faces or colors but numbers are very hard to memorize
because they are so hard to associate ,our brain thinks with pictures not with numbers. it's
easier for us to remember a chicken having a beer than to picture the numbers $4,6435.73. But
we can defeat the way our brain processes numbers by relating them to a certain word that represents
a mental picture !! All you have to do is memorize this chart, once i....
Random Numbers
(3) I'm trying to do random numbers... I use Randomize() ; and then run Random() ; several times in
a loop the only trouble is that each time I run the program the output is the same each pass
through the loop.. ie... it's supposed to output a random number on each of three passes
through the loop... it's actuall.. Code: CODE function RandomFunction():
Integer; var x: Integer begin x := Random(12) + 1; Result :=
x; end; procedure Main; var i: Integer; begin Randomize()....
How Do I Enter Only Numbers In A Form?
(2) i have a form with a few fields such as zip and phone. i only want the user to type in those fields
numbers and not letters, and if the user enters letters, then the form will warn the user somehow to
only enter number. is there a function that will accomplish this or how is something like this
accomplished? what code would i have to use? any help would be greatly appreciated. thanks
__________________ Kvarnerexpress ....
Outputting Large Numbers
(2) Usually when you output a large number (>14 digits), it takes it and turns it into an exponential
expression (eg: 1.6E+15). Is there a way to change it so that it doesn't turn it into that and
just keeps outputting all the digits?....
[tutorial] Visual Basic 6
Adding Commas to Large Numbers (0) This isn't a very long tutorial. I get asked this often, so here is the solution. The following
code will return a string containing a number that has commas appropriately placed: Code:
myStringOrProperty = FormatNumber(3587532789053, 0) The second parameter (0) represents how many
decimal places you want the returned number to go out to. Unless your number contains its own
decimal, you probably don't want .00 at the end of every number you have. The above code would
return: 3,587,532,789,053 This should make life easier for many.......
Cell Phone Numbers (released Soon!)
takes away minutes when they call you! (0) the cell phone numbers are going to be released soon, depended on the host, there is a number u can
call to get rid of it. Here is the number to call for the "Do Not Call List" for cell phones. It is
1-888-382-1222. It blocks your number for 5 years. You must call it using the phone of the
number you want blocked. Hope this helps.....
serial numbers for every one
serial numbers for every one (1) dear friends.... I actually never yet bought and operating sys, /biggrin.gif"
style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> , and as microsoft are
dumbasses, it is so easy to hack them, can u believe that i got my windows xp for only 2$, heh,
and windows sever 2003 for free, isnt that awsome... But I changed my ways and will never do this
again. Microsoft is still a bunch of dumbasses, but I solemly swear never to submit to warez again,
because it's a bad way of life, and I urge everyone to do the same as me! Look at me!
I&....
Looking for imaginary, numbers
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for imaginary, numbers
*MORE FROM TRAP17.COM*
| Similar | | Index In A Mysql Database - Make the numbers follow |
| I Need Help - it's about roman numbers in c/c++ |
| I Keep Seeing The Same Numbers Everywhere |
| Hard Decisions - (Each week I'll post an imaginary scenario and members can discuss |
| Most Efficient Code To Get Prime Numbers |
| Sms With Text As Sender Address And Not Numbers! - how is that ?? |
| What To Look For In A Pc... - You're going to buy a pc but what do all those numbers mean? |
| Letters And Spellings Of Numbers - Letters 'a', 'b', 'c' & 'd' and sp |
| How I Shall Scan Prime Numbers.. - that is 1,3,5,7,11,13,17,19... |
| Is It Possible To Weigh Random Numbers? |
| Showing Numbers Of Mysql Entries In A Database Table - It should be easy, but I don't know how... |
| Showing Numbers With Mysql |
| Ordering Numbers With Mysql? |
| Memorise Large Numbers - memorize numbers : Maths-Alphabet Trick to memorize numbers |
| Random Numbers |
| How Do I Enter Only Numbers In A Form? |
| Outputting Large Numbers |
| [tutorial] Visual Basic 6 - Adding Commas to Large Numbers |
| Cell Phone Numbers (released Soon!) - takes away minutes when they call you! |
| serial numbers for every one - serial numbers for every one |
|
advertisement
|
|