image
Physics Forums Logo
image
image
* Register * Upgrade Blogs Library Staff Rules Mark Forums Read
image
image   image
image

Go Back   Physics Forums > Mathematics > General Math


Reply

image How can I turn this into formula? Share It Thread Tools Search this Thread image
Old Nov8-09, 03:25 PM       Last edited by Chitose; Nov9-09 at 01:05 PM.. Reason: add more detial            #1
Chitose

Chitose is Offline:
Posts: 27
How can I turn this into formula?

First to tell, this is not my homework.

Okay, I am a writer who now try make sci-fi story, and now I need help.

I come up with method of indicator.

Basic level is 1
and level 2 are two times bigger than level 1
and level 3 are three times bigger than level 2
and level 4 are four times bigger than level 3
..and there go without limit...

.............................

almost like magnitude of Earthquake right?

Can we some how turn this into formula for caculate?

like... If three times bigger than 2 is 3
than what is level that two times biggers than 2 ?

2.xxxx ???


..............................................

I know it's silly, but I just want to know that is there a way to create formula from this?

If it's can't, than it's okay
  Reply With Quote
Old Nov8-09, 03:30 PM                  #2
jgens

jgens is Online:
Posts: 561
Re: How can I turn this into formula?

Let LaTeX Code: x_1 be the basic "level 1" and let LaTeX Code: x_n denote the "nth level." We then have that:

LaTeX Code: x_n = n!x_1

Where LaTeX Code: n! = n(n-1)(n-2) \\dots (2)(1)
  Reply With Quote
Old Nov8-09, 04:58 PM       Last edited by lurflurf; Nov8-09 at 05:09 PM..            #3
lurflurf

lurflurf is Offline:
Posts: 976
Recognitions:
Homework Helper Homework Helper
Re: How can I turn this into formula?

As jgens stated the function you want is the factorial. To generate between values (like the gamma function) you need another condition the standard one being that the function should be log convex.
antifactorial(4)~2.66403279720615568637843
  Reply With Quote
Old Nov8-09, 10:59 PM                  #4
Chitose

Chitose is Offline:
Posts: 27
Re: How can I turn this into formula?

Awesome! your guy's really something.

okay, lets try replace value in formula that you gave me. (to be hornest, I'm not quit understand yet with pure formula so I wonna try.)

If I want to know exactly amont of LaTeX Code: x_n that three times bigger than level 4.

ummm..... what it gonna look like?

LaTeX Code: x_n = 3!(4) ???????

confuse... :(
  Reply With Quote
Old Nov9-09, 07:00 AM       Last edited by slider142; Nov9-09 at 11:32 AM..            #5
slider142

slider142 is Offline:
Posts: 611
Blog Entries: 2
Recognitions:
PF Contributor PF Contributor
Re: How can I turn this into formula?

Originally Posted by Chitose View Post
Awesome! your guy's really something.

okay, lets try replace value in formula that you gave me. (to be hornest, I'm not quit understand yet with pure formula so I wonna try.)

If I want to know exactly amont of LaTeX Code: x_n that three times bigger than level 4.

ummm..... what it gonna look like?

LaTeX Code: x_n = 3!(4) ???????

confuse... :(
According to your description, level 4 refers to a power of 4! = 4*3*2*1 = 24 units, in whatever unit you are using to measure the phenomena. I'm just using power as an example.
So 3 times larger than level 4 has a power of 3*4! = 3*4*3*2*1 = 72 units.
If you are looking for the level that corresponds to 72, you are trying to solve the equation x! = 72. There is no well-defined way to do this, as the factorial is only defined for integer input, and its generalization, the gamma function, is not invertable. At best, you can note that 72 is between 4! and 5! and use a linear scale to approximate x as about LaTeX Code: 4 + \\frac{13}{16} .
If you meant you want the power measurement of the level that is 3 times the level of level 4, you have (4 + 3)! = 7! units.
  Reply With Quote
Old Nov9-09, 11:51 AM                  #6
CRGreathouse

CRGreathouse is Offline:
Posts: 2,938
Recognitions:
Homework Helper Homework Helper
Science Advisor Science Advisor
Re: How can I turn this into formula?

Originally Posted by slider142 View Post
its generalization, the gamma function, is not invertable.
It's increasing on [1.462, infinity), so it's invertable where we care about.

Code:
invgamma(x)={
  my(lx);
  if(x<1,error("x too small"));
  lx=log(x);
  solve(t=1,1e6,lngamma(t)-lx)
}
Code:
gp >invgamma(72)
%1 = 5.695574197346865243871035726
  Reply With Quote
Old Nov9-09, 01:34 PM                  #7
Chitose

Chitose is Offline:
Posts: 27
Re: How can I turn this into formula?

Ah crap! I ask someting impossible than!?
Sorry,

.........................

So put it simple, we can calculate amount of unit but it's too complicate to reverse back to find extct 'x' level. Like we know that 3 time of level 4 is 72 units but we can't find about where that '72 units' stand between level 4 and level 5, right?

Since every 'x' level are always 'x' times bigger than previous level, formula scale are always change.
  Reply With Quote
Old Nov9-09, 04:46 PM                  #8
lurflurf

lurflurf is Offline:
Posts: 976
Recognitions:
Homework Helper Homework Helper
Re: How can I turn this into formula?

Originally Posted by slider142 View Post
There is no well-defined way to do this, as the factorial is only defined for integer input, and its generalization, the gamma function, is not invertable.
Nonsense. Do you know what invertable means?
  Reply With Quote
Old Nov9-09, 05:23 PM                  #9
lurflurf

lurflurf is Offline:
Posts: 976
Recognitions:
Homework Helper Homework Helper
Re: How can I turn this into formula?

Originally Posted by Chitose View Post
Ah crap! I ask someting impossible than!?
Sorry,

.........................

So put it simple, we can calculate amount of unit but it's too complicate to reverse back to find extct 'x' level. Like we know that 3 time of level 4 is 72 units but we can't find about where that '72 units' stand between level 4 and level 5, right?

Since every 'x' level are always 'x' times bigger than previous level, formula scale are always change.
It is not impossible at all. I would recommend a calculator or computer though as it is a lengthly calculation by hand.
We have
x!=4!*3=24*3=72
x=antifactorial(72)~4.6955741973468652438710357255

If you do not have a calculator or computer program handy you can go to http://www.wolframalpha.com/ and enter
x! == 72
  Reply With Quote
Old Nov9-09, 09:32 PM                  #10
Chitose

Chitose is Offline:
Posts: 27
Re: How can I turn this into formula?

wow, ploblem slove. now I can explain how to compute this indicator in my story.

Thank you, your people are big help.
  Reply With Quote
image image
Reply
Thread Tools


Similar Threads for: How can I turn this into formula?
Thread Thread Starter Forum Replies Last Post
Formula help needed... algebraic formula for intra-interval rate of acceleration seasnake General Math 2 Jun20-09 05:14 PM
Consequences of Cauchy's Formula (differential formula) StumpedPupil Calculus & Beyond 1 Oct24-08 03:23 PM
Rate Of Turn and Turn Radius of an aircraft Newton1Law Introductory Physics 2 Aug14-07 07:24 PM
How does it turn? Bartholomew Brain Teasers 17 Jan4-05 01:17 PM

Powered by vBulletin Copyright ©2000 - 2009, Jelsoft Enterprises Ltd. © 2009 Physics Forums
Sciam | physorgPhysorg.com Science News Partner
image
image   image