All about flooble | fun stuff | Get a free chatterbox | Free JavaScript | Avatars    
perplexus dot info

Home > Just Math
From a to z (Posted on 2022-04-17) Difficulty: 3 of 5
If a=31,415,926,5353-31,415,926,5333

Evaluate z=sqrt((a-2)/6)

No Solution Yet Submitted by Ady TZIDON    
Rating: 4.5000 (2 votes)

Comments: ( Back to comment list | You must be logged in to post comments.)
solution | Comment 2 of 7 |
In Wolfram Alpha:

simplify sqrt((n^3-(n-2)^3-2)/6) 

leads, at the bottom of Alpha's solution, to an alternate form assuming n is real:

abs(n - 1)

n in this instance being 31415926535, z = 31415926535 - 1 = 31415926534

So this agrees with my original findings via

 for n=10:20
   a=n^3-(n-2)^3;
   z=sqrt((a-2)/6);
   disp([n a z])
 end
 
           n          a            z
          10         488           9
          11         602          10
          12         728          11
          13         866          12
          14        1016          13
          15        1178          14
          16        1352          15
          17        1538          16
          18        1736          17
          19        1946          18
          20        2168          19
>> 

with z showing up as n-1 all the way down.

so when n = 31415926535, z = 31415926534

Confirming that:

>> a=sym(31415926535)^3-sym(31415926533)^3
a =
5921762639938111518938
>> z=(sqrt((a-2)/6))
z =
31415926534

in Matlab 


  Posted by Charlie on 2022-04-17 08:24:58
Please log in:
Login:
Password:
Remember me:
Sign up! | Forgot password


Search:
Search body:
Forums (0)
Newest Problems
Random Problem
FAQ | About This Site
Site Statistics
New Comments (8)
Unsolved Problems
Top Rated Problems
This month's top
Most Commented On

Chatterbox:
Copyright © 2002 - 2024 by Animus Pactum Consulting. All rights reserved. Privacy Information