LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 11-04-2004, 04:08 AM   #1
davee
Member
 
Registered: Oct 2002
Location: Ayrshire, Scotland
Distribution: Suse(home) RHEL (Work)
Posts: 263

Rep: Reputation: 30
How do you calculate (manually) 2 to the power 3.5?


Ok - brain getting rusty here.

2^2 = 2 x 2 = 4
2^3 = 2 x 2 x 2 = 8
2^4 = 2 x 2 x 2 x 2 = 16
etc.

How do I calculate 2^3.5? Don't need to know for any reason; it just started bugging me...!

Dave
 
Old 11-04-2004, 04:18 AM   #2
vharishankar
Senior Member
 
Registered: Dec 2003
Distribution: Debian
Posts: 3,178
Blog Entries: 4

Rep: Reputation: 138Reputation: 138
We were taught how to do this at school.

Apparently the only way to calculate the above is to use calculus. I forget the exact method, but somebody more in touch with Mathematics might be able to help you.
 
Old 11-04-2004, 04:25 AM   #3
davee
Member
 
Registered: Oct 2002
Location: Ayrshire, Scotland
Distribution: Suse(home) RHEL (Work)
Posts: 263

Original Poster
Rep: Reputation: 30
I'll maybe do a little research then; it seems like something that should be easy to work out...

Dave
 
Old 11-04-2004, 05:22 AM   #4
bakery2k
Newbie
 
Registered: Oct 2003
Posts: 0

Rep: Reputation: 0
2^(3.5) = 2^(7*0.5) = (2^7)^(0.5) = 128^(0.5) = sqrt(128) = sqrt(64*2) = sqrt(64)*sqrt(2)

= 8 * sqrt(2)
 
Old 11-04-2004, 05:51 AM   #5
vharishankar
Senior Member
 
Registered: Dec 2003
Distribution: Debian
Posts: 3,178
Blog Entries: 4

Rep: Reputation: 138Reputation: 138
Thumbs up

Quote:
Originally posted by bakery2k
2^(3.5) = 2^(7*0.5) = (2^7)^(0.5) = 128^(0.5) = sqrt(128) = sqrt(64*2) = sqrt(64)*sqrt(2)

= 8 * sqrt(2)
Perfect mate! You got it. I was just thinking about it and was about to post this simple solution when I saw that somebody had beaten me to it. Thanks...
 
Old 11-05-2004, 01:25 AM   #6
Mathiasdm
LQ Newbie
 
Registered: Aug 2004
Distribution: Ubuntu Gutsy Gibbon
Posts: 25

Rep: Reputation: 15
Or slightly different: 2^(7/2) = 2^(7*1/2) = (2^7)^(1/2) = sqrt (128) = sqrt (64*2) = 8 sqrt 2

Only minor difference ;-)
 
Old 11-05-2004, 02:00 AM   #7
Poetics
Senior Member
 
Registered: Jun 2003
Location: California
Distribution: Slackware
Posts: 1,181

Rep: Reputation: 49
Blast this finding threads too late to contribute anything extra

Nicely done, gents
 
Old 11-05-2004, 02:10 AM   #8
kersten78
Member
 
Registered: Nov 2003
Location: Minneapolis, MN
Distribution: Slackware, Debian, Gentoo, openSuSE
Posts: 358

Rep: Reputation: 33
Much easier by addition of exponents. Since (a^x)*(a^y) = a^(x+y),
2^(3.5)=(2^3)*(2^.5), or 8*Sqrt[2]. Same concept as above, just using addition rule instead of multiplication rule. Sorry, I had to post, I'm a math nut.
 
Old 11-05-2004, 02:24 AM   #9
SciYro
Senior Member
 
Registered: Oct 2003
Location: hopefully not here
Distribution: Gentoo
Posts: 2,038

Rep: Reputation: 51
Quote:
2^(3.5) = 2^(7*0.5) = (2^7)^(0.5) = 128^(0.5) = sqrt(128) = sqrt(64*2) = sqrt(64)*sqrt(2)

= 8 * sqrt(2)
... umm, since i never look calculus I'm a bit behind here .. but what happened to the "0.5" .. suddenly it vanished into 128 without doing a thing... i say the answer seems more like 12 if you count half's
 
Old 11-05-2004, 02:37 AM   #10
nuka_t
Member
 
Registered: Jun 2004
Location: Kalifornia
Distribution: YOPER+KDE
Posts: 263

Rep: Reputation: 30
Quote:
Originally posted by Harishankar
Perfect mate! You got it. I was just thinking about it and was about to post this simple solution when I saw that somebody had beaten me to it. Thanks...
simple???

<---needs to take calculus.
 
Old 11-05-2004, 02:56 AM   #11
vharishankar
Senior Member
 
Registered: Dec 2003
Distribution: Debian
Posts: 3,178
Blog Entries: 4

Rep: Reputation: 138Reputation: 138
The above is not the calculus method, everybody. It's simple math The calculus method is much tougher and is used by students specifically studying calculus. Not used by people who just want the answer.

Explanation

2^{3.5} = 2^{7 * 0.5} = (2^7)^{0.5) = 128^{0.5} (because 2 x 2 x 2 x 2 x 2 x 2 x 2 = 128)

Those who want the answer quickly usually use a calculator, not calculus

Sqrt is another way of saying square root which is same as raised to the power half.

x^{0.5) = sqrt{x}
 
Old 11-05-2004, 11:22 AM   #12
kersten78
Member
 
Registered: Nov 2003
Location: Minneapolis, MN
Distribution: Slackware, Debian, Gentoo, openSuSE
Posts: 358

Rep: Reputation: 33
What would the caculus method be? It seems like a basic algebra question regarding exponent rules... unless you want to find an approximation. Then maybe you could set up the continued fractions to approximate Sqrt[2], which still seems like an algebra problem, unless you consider some sort of limiting situation...which isn't really going to help since Sqrt[2] is irrational.
Hmm...maybe I missed the calculus of exponents. Who knows...
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to calculate Server power needs psychobyte Linux - Hardware 1 08-11-2005 02:59 AM
Enabling power save/power management/cpu freq scaling features for a Debian system zero79 Debian 0 12-19-2004 01:17 PM
Calculate Interface Traffic JJX Linux - Networking 7 10-22-2004 02:38 AM
Calculate the space of a folder Half_Elf Linux - General 4 05-18-2003 07:53 PM
calculate traffic using iptables p_nanda2002 Linux - Software 4 11-01-2002 02:51 AM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 07:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration