https://github.com/teddyoweh/proving-orthogonal-vectors
A function created to parse two vector and follow an alogrithm to prove if the vectors are Orthogonal ( Perpendicular) or not.
https://github.com/teddyoweh/proving-orthogonal-vectors
algorithm-challenges algorithms calculus pre-calclus python vectors
Last synced: 6 months ago
JSON representation
A function created to parse two vector and follow an alogrithm to prove if the vectors are Orthogonal ( Perpendicular) or not.
- Host: GitHub
- URL: https://github.com/teddyoweh/proving-orthogonal-vectors
- Owner: teddyoweh
- Created: 2022-04-28T09:10:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-28T09:10:05.000Z (over 3 years ago)
- Last Synced: 2025-03-24T00:26:26.594Z (6 months ago)
- Topics: algorithm-challenges, algorithms, calculus, pre-calclus, python, vectors
- Language: Jupyter Notebook
- Homepage:
- Size: 1000 Bytes
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Proving Orthogonal ( Perpendicular) Vectors
A function created to parse two vector and follow an alogrithm to prove if the vectors are Orthogonal ( Perpendicular) or not.# Function Name | IsOrthogonal(u,v)
Prints out a bool ( True or False) after performing an algorithmn operation on the vectors entered.
u and v are the arguments to be parsed for the algorithm to operate on.
u and v are vectors and should be in a comma seperated stringeg:
vector1 = '3,4'
vector2 = '-8,6'
IsOrthogonal(vector1,vector2)
## Or
IsOrthogonal('3,4','-8,6')