Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. {
  2. "cells": [
  3. {
  4. "cell_type": "markdown",
  5. "metadata": {},
  6. "source": [
  7. "#### 1. Derive expressions for $\\hat{r}$ and $\\hat{\\theta}$ as a function of $\\hat{i}$ and $\\hat{j}$"
  8. ]
  9. },
  10. {
  11. "cell_type": "markdown",
  12. "metadata": {},
  13. "source": [
  14. "Ideally, in a cartesian frame of reference, a resultant unit vector $\\hat{r}$, should be in terms of the cartesian unit vectors $\\hat{i}$ and $\\hat{j}$ as follows: $$\\hat{r} = \\hat{i} +\\hat{j}$$\n",
  15. "\n",
  16. "Let's assume for a second that we rotate our coordinate system counter-clockwise an arbitrary angle $\\theta$, such that the coordinate system is aligned with the direction of the unit vector $\\hat{r}$. As a result, our angle $\\hat{r}$ can be described as \"components\" of the unit vectors. Therefore our last expression would change in the follwoing form:$$\\hat{r} = \\cos{(\\theta)}\\hat{i} +\\sin{(\\theta)}\\hat{j}$$\n",
  17. "\n",
  18. "For instance, given that the unit vector $\\hat{r}$ is orthonormal (makes a $\\pi/2$ angle) in the same coordinate system) to the unit vector $\\hat{\\theta}$, it can be written as follows: $$\\hat{\\theta} = \\sin{(\\theta)}\\hat{i} +\\cos{(\\theta)}\\hat{j}$$. Notice that the first term could have a negative sign, depending on the rotation of our system. \n",
  19. "\n",
  20. "Also notice that if these expressions are correct, the scalar profuct of $\\hat{r}$ and $\\hat{\\theta}$ should be zero, since both are orthonormal. \n",
  21. "\n"
  22. ]
  23. },
  24. {
  25. "cell_type": "markdown",
  26. "metadata": {},
  27. "source": [
  28. "#### 2. Since the two frames are equialent (you should choose one over the other based on the convenience) they have the same number of basis vectors obeying the same properties. What property must be satisfied by $\\{\\hat{r},\\hat{\\theta}\\}$ as a set?"
  29. ]
  30. },
  31. {
  32. "cell_type": "markdown",
  33. "metadata": {},
  34. "source": [
  35. "Initially, polar coordinates are more convenient when circular motion is involved. \n",
  36. "Referencing our expressions on last problem, when the angle $\\theta = \\{0,\\frac{\\pi}{2},\\pi,\\frac{3}{\\pi},2\\pi\\}$, it is more convenient to use cartesian coordinates, since there is no need to rotate our system in the same domain of cartesian coordinates."
  37. ]
  38. },
  39. {
  40. "cell_type": "markdown",
  41. "metadata": {},
  42. "source": [
  43. "#### 3. What is one essential porperty that the set of basis vectors$\\{\\hat{r},\\hat{\\theta}\\}$, $\\{\\hat{i},\\hat{j}\\}$ do not share? *Hint: Thank about describing a trajectory as a function of time using both coordinate systems*"
  44. ]
  45. },
  46. {
  47. "cell_type": "markdown",
  48. "metadata": {},
  49. "source": [
  50. "Finding the derviative of both functions, the velocity of a punctual mass in the plance described in cartesian coodinates describes the motion in terms of linear velocities in both axis. \n",
  51. "For the case of polar coordinates, the velocity of the object is described in terms of the angular velocity, since includes the derviative of the angle with respect to time. This property makes polar coordinates more suitable for circular motion."
  52. ]
  53. },
  54. {
  55. "cell_type": "code",
  56. "execution_count": null,
  57. "metadata": {},
  58. "outputs": [],
  59. "source": []
  60. }
  61. ],
  62. "metadata": {
  63. "kernelspec": {
  64. "display_name": "Python 3",
  65. "language": "python",
  66. "name": "python3"
  67. },
  68. "language_info": {
  69. "codemirror_mode": {
  70. "name": "ipython",
  71. "version": 3
  72. },
  73. "file_extension": ".py",
  74. "mimetype": "text/x-python",
  75. "name": "python",
  76. "nbconvert_exporter": "python",
  77. "pygments_lexer": "ipython3",
  78. "version": "3.6.5"
  79. }
  80. },
  81. "nbformat": 4,
  82. "nbformat_minor": 2
  83. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement