Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: List all different equations for a given one

by LanX (Saint)
on Sep 24, 2013 at 21:02 UTC ( [id://1055543]=note: print w/replies, xml ) Need Help??


in reply to Re: List all different equations for a given one
in thread List all different equations for a given one

How many random numbers do you need to proof that abs($x**10000001) and abs($x**10000000) are identical? :)

Please if you consider replying that you limit the range as soon that one function returns inf think about functions with multiple separated intervals not being inf.

I'd rather avoid numerical approaches as long as possible. (IIRC for instance some differential equations can only be solved numerically)

Cheers Rolf

( addicted to the Perl Programming Language)

Replies are listed 'Best First'.
Re^3: List all different equations for a given one
by BrowserUk (Patriarch) on Sep 25, 2013 at 02:15 UTC
    How many random numbers do you need {drivel} {drone}

    Not many. My first guess:

    $x = 1.000000001; say abs($x**1e8);; 1.10517092716461 $x = 1.000000001; say abs($x**(1e8+1));; 1.10517092826979

    You seem to have missed: "semi-random range" & "well-chosen set of inputs". Inspecting a string for exponentiation by big constants is trivial.

    if you consider replying that you limit the range as soon that one function returns inf think about functions with multiple separated intervals ...

    Vary them one at a time...

    I'd rather avoid ...

    You are quite welcome to do things the hard way; it seems to suite.

    The OP asked for ideas.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1055543]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (7)
As of 2024-04-23 09:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found