Skip to main content

Find the Resultant vector of two Vectors With PYTHON!!







NEW ARTICLE:  How to Find the resultant of multiple vectors with Python!





Using Python We can do many complex calculations.

I learned how to calculate Resultant Vector using a formula with its size and direction in my Physics class. Then, I simply developed a CLI software to calculate the resultant of given two vectors Hope you like it :>)


Follow me...

Step :1

You need to install python on your computer. No matter what the operating system is you can find the ideal version of python from the official website of Python org

And you will need a code editor like VS code and can download it with a simple Google search.

(Hope you hate the first step Haha )


Step 2:

we use the math module to calculate our resultant vector. The method I used as follows

math.radians() : converts degrees to radians

math.degrees() : converts radians to degrees

math.sqrt()  : find the square root of a number

math.atan() :find the tan inverse


Step 3:

the formula I used to calculate the size of the resultant is as follows:

R2=p2+Q2+2PQ cos θ

R : size of the resultant vector

p: size of the first vector

Q: size of the second vector

Theta: angle between first and second vectors


Read the scientific side of this formula:https://www.phyley.com/find-resultant-force

Step : 3:

find the code below :

https://github.com/chamodhk/resultant 



NEW ARTICLE:  How to Find the resultant of multiple vectors with Python!



Comments

Trending Now

Let's talk about cryptography.

Have you ever heard of cryptography?  People write their diaries every day. For many of them, their diary is one of their best friends to whom they tell their every secret. What happens when someone else finds such a diary? That would freak out the dairy's owner for sure. Also, it might put their lives in danger. Wise men always hide their diaries so no one else finds it.  But legends hide their message so that only they can read what they wrote. So even if the diary is found by someone else, they cannot know the secrets. for example, I wrote this in my diary today.   P dyval h isvn wvza hivba jyfwavnyhwof avkhf Can you understand it? This is just a very primitive level of cryptography yet powerful enough to hide what I wrote from 90% of people. I will discuss this type of cryptography in the next blog post. The human used cryptography from the very beginning to share their messages in secret and conceal their inventions. As you may know, many people tried to find a recip...

Generate all possible phone numbers with Python | Generates Crores of Phone Numbers within minutes.

Recently,  I learned about itertools in python. Especially, about the functions permutations, combinations, and products and I tried to make a script that generates all phone numbers in our country. I bet your phone number is too on the list. let the hack begin!!! First, you need to install itertools in your computer  Simply open your terminal and type                sudo apt-get  install  -y python-more- itertools Then Write the code below from itertools import product file_name = "phonebook.txt" phonebook = open (file_name, 'a' ) prefixes = [ '+9471' ] product_a = product([ '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , '0' ], [ '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' , '0' ], [ '1' , '2' , '3' , '4' , '5...