Recent content by alyafey22

  1. alyafey22

    MHB Is AlphaZero a Scientific Breakthrough in AI?

    I am working on deep learning as well but as part of the Masters program. For those interested to see some battles between stockfish and AlphaZero watch this with some commentary lFXJWPhDsSY
  2. alyafey22

    MHB What is the Kaggle Data Science Bowl 2017 competition about?

    It is a computer vision competition . The question is, given an image how many sea lions are there ? Actually it is more complicated since it asks for the type as well.
  3. alyafey22

    MHB What is the Kaggle Data Science Bowl 2017 competition about?

    I am currently participating in a competition to recognize sea lions. The competition is fierce to be honest with many previous winners but it is always a good experience that you learn from. Also the Cash prize is a good incentive.
  4. alyafey22

    MHB 10.5.55 Does the following series converge or diverge?

    $$(2n)! = 1 \times 2 \times \cdots (2n-1)(2n) \leq 2 \times 2 \cdots (2n) (2n) = 4^n(n!)^2$$ Hence $$\sum_{n=1}^\infty \frac{10^n (n!)^2}{(2n)!} \geq \sum_{n=1}^\infty \left( \frac{5}{2}\right)^n$$
  5. alyafey22

    MHB Divergent or Convergent Integral

    Seems correct for me.
  6. alyafey22

    MHB 206.10.3.17 Evaluate the following geometric sum

    The right hand side should be as a function of $n$.
  7. alyafey22

    MHB Evaluating a complex integral

    Please write your initial attempt.
  8. alyafey22

    Create a binary search tree in python with the support of variables

    I think it should work but u have an extra else statement that has no effect since the value can be either ><=.
  9. alyafey22

    Create a binary search tree in python with the support of variables

    Before you search in the here._left and here._right you have to make sure they are not None. If they are just put here._left = Node or here._right = Node , else search the subtree.
  10. alyafey22

    MHB Definite Integration: $$\int^{\frac{\sqrt{5}+1}{2}}_{1}$$

    What methods are expected to use ? what have you tried so far ?
  11. alyafey22

    Create a binary search tree in python with the support of variables

    You are close. what about the case when you have a non-empty tree and you want to insert a non-existent variable? The node of that variable must be inserted as a leaf node but you don't have a base case for that.
  12. alyafey22

    Create a binary search tree in python with the support of variables

    In your implementation of the insert method, you are returning a node. Shouldn't you update the tree ?
  13. alyafey22

    Create a binary search tree in python with the support of variables

    What exactly is the problem you are facing ? Let is start with the insert method. Is it working correctly ?
  14. alyafey22

    MHB Exploring the Limit of $\displaystyle \frac{\infty}{\infty}$

    You can use the mathematical induction.
Back
Top