Skip to content

DanielElliottProjects/RecursivePascal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

RecursivePascal

Playing around with Pascal's Triangle, using C(n,k) = C(n-1,k) + C(n-1,k-1) to recursively create rows by working from the base upward.

Future Improvements

  1. Add ability to go above 25 rows(changing data type)
  2. Add ability to specify a and b(currently based on (x+1)^n, would like to be able to have (a+b)^n, where a and b can be any polynomial.
  3. Fix the right hand side's unsatisfying visuals.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages