Yzhood Music Fun
  • Home
  • Category
    • Rap
    • Pop
    • Fun
    • HipHop
    • Entertainment
    • Music
  • Privacy Policy
No Result
View All Result
  • Login
  • Register
UPLOAD
Music Fun
  • Home
  • Category
    • Rap
    • Pop
    • Fun
    • HipHop
    • Entertainment
    • Music
  • Privacy Policy
No Result
View All Result
  • Login
  • Register
UPLOAD
Music Fun
No Result
View All Result

Complex Fibonacci Numbers?

1 Views
5 years ago
0 0
Share
Facebook Twitter Google+
    Stand-up Maths Stand-up Maths
    0 Subscriber
    Subscribe



    Huge thanks to Jane Street! https://www.janestreet.com/join-jane-street/ Check out Ben Sparks’s GeoGebra files. Binet formula 2D complex output: …

    source

    ADVERTISEMENT

    Comments 44

    1. Alkis05 says:
      5 years ago

      6:45 You just made me fell of the chair. Expect the bill from my orthopedist to arrive soon.

      Reply
    2. D says:
      5 years ago

      Starting points e and pi.

      Reply
    3. Alan Forster says:
      5 years ago

      quaternions?

      Reply
    4. Bassem Guitani says:
      5 years ago

      Don't You Only Have To Mirror The Sequence In The Positive Direction And Check It's Position?

      Reply
    5. Percival de Rolo says:
      5 years ago

      Matt Parker: uses Python and Excel to plot 3-D complex values
      MATLAB: Am I a joke to you?

      Reply
    6. Fran Tabor says:
      5 years ago

      GREAT show, as usual.
      One problem with visualizing complex numbers with a grid system—and it is something we all do—is that it implies multiples of i have order. It doesn't.
      Perhaps the meaning of order and number systems that avoid any semblance of before-after or bigger-smaller, except for the occasional 100% Real intersections could be a future video?
      Multidimensional constructs can—and most do—have order. It is possible to determine which of two hyperspheres is larger. Pure complex "shape", it does not even make sense to discuss shape because shape implies size and size comparisons require order.
      Limiting our discussion to the absolute value of complex terms avoids the problem—but the absolute values are no longer truly complex, are they?

      Reply
    7. Ian O'Keefe says:
      5 years ago

      use quarternions for values of n and get 8-dimensional graphs. 16-dimensional graphs from octonions, and…unfortunately nothing for 6 dimensions, which would be cool because you could have two perpendicular 3D universes.

      Reply
    8. Strahinja Jovanović says:
      5 years ago

      Go check out the website ‘complex function plotter’

      Reply
    9. longbowslo says:
      5 years ago

      I don't know – somehow I get this remote intuitive feeling that there is a connection between this 4D plot where you can sort of see two layers of 3D wave function and the quantum nature of particles and THEIR wave functions…. or rather that there's something erm… analogous between the nature of i and the time-component of space-time….

      I'm a total lay person but I like looking for patterns in allegedly totally unrelated phenomena 🙂

      Reply
    10. DRFR says:
      5 years ago

      4:50 – how you get the 0th number?

      Reply
    11. Chris Van Vranken says:
      5 years ago

      Amazing! Good work!!

      Reply
    12. Award Mathpu says:
      5 years ago

      Where can you end up? Pi root 2 and the golden ratio pretty much.

      Reply
    13. Brodie Eaton says:
      5 years ago

      Matt just looks so happy, and it makes me happy. This is actually a really cool find! Well done!

      Reply
    14. Felipemelazzi says:
      5 years ago

      I wonder what Binet would say if he saw this video

      Reply
    15. Jesse Carpenter says:
      5 years ago

      I wish I had friends that were into stuff like this. Real life isn’t half as interesting as the internet :/

      Reply
    16. Audiman Audiman says:
      5 years ago

      I think you need Matlab, not Excel…

      Reply
    17. David Smets says:
      5 years ago

      How do you make Excel graphs look fancy?

      Reply
    18. Aksel William Danenbarger says:
      5 years ago

      Your flying fase is verry funny, and also little bit cool. I have never seen that before. ?

      Reply
    19. Chris G The Patriot says:
      5 years ago

      This was one of the coolest Fibonacci maths I've ever seen!!!

      Reply
    20. Noah Niederklein says:
      5 years ago

      Wait. I just came from "Brady Numbers" on Numberphile, and 2,308 is the first Brady number. Coincidence?

      Reply
    21. Debayudh Biswas says:
      5 years ago

      It got boring afterwards

      Reply
    22. jamie chatterton says:
      5 years ago

      That was fun to watch

      Reply
    23. Jean DAVID says:
      5 years ago

      python :

      import numpy as np
      import matplotlib.pyplot as plt

      import scipy.constants

      print(scipy.constants.golden)
      phi = scipy.constants.golden

      def binet(n): # for complex power
      #u = phi**n
      #v = (1j**2/phi)**n
      minus1 = 1j**2
      return (phi**n – (minus1/phi)**n)/np.sqrt(5)

      for k in range(10):
      print(k, int(binet(k).real), binet(k))

      #positive numbers
      n = np.linspace(0,5,200)
      x = binet(n).real
      y = binet(n).imag
      max_x = int(max(x))
      for k in range(max_x+1):
      plt.plot(k,0,'b.')
      plt.plot(x,y,label='Positive numbers')
      #plt.show()

      # negative numbers
      n = np.linspace(-3,0,200)
      x = binet(n).real
      y = binet(n).imag
      min_x = int(min(x))
      for k in range(min_x,0):
      plt.plot(k,0,'b.')
      plt.plot(x,y, label='Negative numbers')
      plt.legend()
      plt.grid()
      plt.axis('equal')
      plt.show()

      Reply
    24. Gary Ferrão says:
      5 years ago

      Codes in Python.
      But Matt just loves his spreadsheets.

      Reply
    25. Michele e i Rettili says:
      5 years ago

      I loved this video!! THANK YOU!

      Reply
    26. Alej Random says:
      5 years ago

      5:34 that happiness when you allow complex result 🙂

      Reply
    27. Yosef MacGruber says:
      5 years ago

      What about considering the quaternion domain?

      Reply
    28. impendio says:
      5 years ago

      is this analytic continuation?

      Reply
    29. Jasmine Psiidmon says:
      5 years ago

      Are there any neat graphs about factorials and complex numbers?

      Reply
    30. Adrian Au says:
      5 years ago

      6:45 7:24 12:56 18:23

      Reply
    31. Martin Pieper says:
      5 years ago

      Only a minor Question but isn't it a relation instead of a function?

      Reply
    32. Андрiй Рум'янцев says:
      5 years ago

      φ

      Reply
    33. John Critchley says:
      5 years ago

      Hi, I did an animation to display the plot of the Binet formula with the input i component increasing in time. I've uploaded it here. https://youtu.be/mcVtjGT_9fE

      Reply
    34. TheOfficialCzex says:
      5 years ago

      There was a Matt Parker who lived in a 4-dimensional shoe…

      Reply
    35. meowsqueak says:
      5 years ago

      Cool, but why are you using Excel to draw your plots? Python has some excellent plotting libraries, even before you needed to get Ben’s help.

      Reply
    36. Kyril Čouda says:
      5 years ago

      6:45 Liked and subscribed just for that meme. Good job, Matt 😀

      Reply
    37. Monko Games says:
      5 years ago

      I want your shirt

      Reply
    38. AlanTheBeast100 says:
      5 years ago

      But, but, can you game the markets with it?

      Reply
    39. Miguel De le court says:
      5 years ago

      How does he deal with the multiples branches of the fractionnal roots?

      Reply
    40. Some Traveler says:
      5 years ago

      That's interesting, if you accomplished that "Amazed Face" bit like I think you did; it's a good visual representation of nontemporal effect for like, three perspectives.

      Reply
    41. Eric Dew says:
      5 years ago

      Or the zeroes vis-a-vis the Riemann zeta function?

      Reply
    42. Eric Dew says:
      5 years ago

      How does this compare to the gamma function, which also have a bunch of poles in the negative integers.

      Reply
    43. The Last Lion Turtle says:
      5 years ago

      One way I have seen C -> C functions visualized is with two 2D graphs, one for input and the other for output.
      The first graph is a color wheel, and the other is the complex function as a transform of the color wheel. To make it, take the color of position x in the input graph, and plot it at position f(x) in the output graph.
      Instead of partially representing 4 perpendicular dimensions in a 3D shape, this represents the function as a transform of a 2D space which we can see entirely.
      It would be cool to see this equation in that format. I don't know what this type of graph is called, or if there are prebuilt tools that do this.

      Reply
    44. Sholin Wright says:
      5 years ago

      You’re getting close to Curious Droid shirt territory, which is a good thing.

      Reply

    Leave a Reply Cancel reply

    Your email address will not be published. Required fields are marked *

    Recommended videos

    [FREE] Skepta x Stormzy x Octavian *GRIME* Type Beat ~ Nazro (prod. Zoltai)

    [FREE] Skepta x Stormzy x Octavian *GRIME* Type Beat ~ Nazro (prod. Zoltai)

    3 Views
    March 6, 2021
      VTEN – para 2.0  || reply for all haters  || New rap song 2021 ||

      VTEN – para 2.0 || reply for all haters || New rap song 2021 ||

      1 Views
      March 23, 2021
        MIGOS TOOK OVER THE COMPLEX OFFICE | #LIFEATCOMPLEX

        MIGOS TOOK OVER THE COMPLEX OFFICE | #LIFEATCOMPLEX

        7 Views
        March 11, 2021
          Tollywood Latest Updates : Entertainment Special – TV9

          Tollywood Latest Updates : Entertainment Special – TV9

          1 Views
          September 27, 2020
            Show More

            Copyright (c) 2020 – All rights reserved.

            No Result
            View All Result
            • Home
            • Category
              • Rap
              • Pop
              • Fun
              • HipHop
              • Entertainment
              • Music
            • Privacy Policy

            © 2020 Copyright - All rights reserved.

            Welcome Back!

            Login to your account below

            Forgotten Password? Sign Up

            Create New Account!

            Fill the forms bellow to register

            All fields are required. Log In

            Retrieve your password

            Please enter your username or email address to reset your password.

            Log In

            Add New Playlist