Is the somewhere where I could learn how to graph polar coordinates such as (1,pi/3)?

It is a very simple concept to learn

Polar coordinates have the form (r,Ø)
where r is the length of a rotating arm, usually r is positive, and Ø is the angle it points to.

So draw a standard x-y intersecting axes
the normal point (0,)) is the centre of rotation, with the positive x-axis as the 0 direction.
Rotation is counterclockwise.

so a polar point of (4,π/6) would be a rotating arm of length 4 rotated through π/6 radians or 30 degrees.

Unlike rectangular coordinates, polar coordinate points are not uniquely defined.
e.g. (5, π/3) ends up in the same place as (5,-5π/3) or (5,7π/3).
My angles are all coterminal, that is they end up in the same direction.

to convert from one to the other, ....

1. polar to rectangular:
x = rcosØ
y = rsinØ

2. rectangular to polar
r = √(x^2 + y^2) , which is just using Pythagoras
Ø = arctan(y/x)

Yes, there are many resources available where you can learn how to graph polar coordinates. Here's a step-by-step explanation of how to graph a polar coordinate such as (1, π/3):

1. Understand Polar Coordinates: Polar coordinates are a way of representing points in a plane using a distance from the origin and an angle measured from a reference line. The distance is represented by "r" and the angle by "θ".

2. Convert Polar Coordinates to Cartesian Coordinates: To graph polar coordinates, it is often helpful to convert them to Cartesian coordinates. The conversion formulas are:
- x = r * cos(θ)
- y = r * sin(θ)

For example, in the case of (1, π/3):
- x = 1 * cos(π/3) = 1/2
- y = 1 * sin(π/3) = √3/2

3. Plot the Point: Once you have the Cartesian coordinates (x, y), you can plot the point on a graph. The x-coordinate represents the horizontal position, and the y-coordinate represents the vertical position.

- Start by drawing the coordinate axes, with the horizontal x-axis and the vertical y-axis intersecting at the origin (0,0).
- Locate the point (1/2, √3/2) on the graph. Start from the origin and move 1/2 unit to the right and √3/2 units upward. Mark this point.

4. Optional: Add Polar Gridlines and Other Points: To further understand polar coordinates, you can add polar gridlines to your graph. These gridlines represent the radial distance (r) in polar coordinates.

- Draw concentric circles around the origin at equal intervals, such as r = 1, 2, 3, etc.
- Draw lines from the origin (0,0) to specific angles, such as 30, 60, 90 degrees, etc., to create reference lines.
- You can plot other polar coordinates following the same steps mentioned above.

To learn more about graphing polar coordinates, you can refer to textbooks, online tutorials, or video courses that cover the topic. Additionally, there are graphing calculators and online tools available that can help you visualize and graph polar coordinates.