Results 1 to 14 of 14

Thread: Scientific Notation?

  1. #1

    Thread Starter
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418

    Scientific Notation?

    What would be the proper scientific notation for 0.000439?

    439 * 10-6 or 4.39 * 10-4

  2. #2
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    the latter, although I always type E-4 for short
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  3. #3
    Lively Member
    Join Date
    Oct 2003
    Location
    Guildford, UK
    Posts
    91
    439E-6 would be more appropriate in the context of engineering but 4.39E-4 is the proper scientific notation.

  4. #4
    Hyperactive Member sw_is_great's Avatar
    Join Date
    Nov 2003
    Posts
    330
    4.39E-4

    because the number is always represented like xEy


    where 0<=|x|<10
    Regards

  5. #5
    Hyperactive Member sw_is_great's Avatar
    Join Date
    Nov 2003
    Posts
    330
    Regards

  6. #6
    Fanatic Member sql_lall's Avatar
    Join Date
    Jul 2002
    Location
    Up Above (i.e. AUS)
    Posts
    571

    Talking mmmmmmm

    I'm guessing thats meant to be:

    1<=|x|<10
    sql_lall

  7. #7
    Hyperactive Member sw_is_great's Avatar
    Join Date
    Nov 2003
    Posts
    330
    I think no as for 0 we need to write 0 so
    0 <=
    Regards

  8. #8
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    Originally posted by sw_is_great
    I think no as for 0 we need to write 0 so
    0 <=
    but we only use xEy when x is not 0
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  9. #9

    Thread Starter
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418
    How about 0< x <10. No way x could be equal to 0. x * 10-y would end up being 0.

  10. #10
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    [i]Originally posted by Dilenger4 How about 0< x <10.
    0< x <10 would be self defeating, the reason we use an integer exponent is a compromise between simplicity and supplement to our existing sense for logaritmic measures, but with the above you can't choose an exponent systematically.
    No way x could be equal to 0. x * 10-y would end up being 0.
    y=1 works
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  11. #11

    Thread Starter
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418
    Posted by kedaman

    0< x <10 would be self defeating, the reason we use an integer exponent is a compromise between simplicity and supplement to our existing sense for logaritmic measures, but with the above you can't choose an exponent systematically.
    Im a bit confused. Are you refering to exponent as being xEy or xEy.

    When i was refering to 0< x <10 i was basically trying to say if x was 0< x <1. If x was equal to zero as someone else pointed out what would be the point.

  12. #12
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    exponent is the latter. x is refered to as factor.
    When i was refering to 0< x <10 i was basically trying to say if x was 0< x <1.
    Not sure what you're trying to say though, I'm saying that 0<x<1 would enable us to choose any y up from the logaritm of the number to be expressed which would not be systematic.
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  13. #13

    Thread Starter
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418
    Posted by kedaman

    exponent is the latter. x is refered to as factor.
    Right. Of course.

    I was getting confused because you mentioned the reasons why an integer exponent is used but i was not refering to the exponent part. Im not sure what you mean by not being able to choose an exponent systematically when 0<x<1. Below all except the first use a fractional factor. So what would be nonsystematic about the exponent of the last three?

    1 * 10-6
    0.1 * 10-5
    0.01 * 10-4
    0.001 * 10-3

  14. #14
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    by choosing systematically i mean that there is only one way of doing it.
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width