Could someone explain to me how I can find the area/perimeter/volume of a rectangular prism if I am given R^3 points. For example find area of rectangular prism given pts (2,3,4)(5,3,2), similar to this.

As it is, there are multiple solutions if the sides of the prism can orient in any direction. Since the two points define only a diagonal, which can fit many prisms.

This problem can be solved if there were the requirement that the sides of the prism are parallel to the coordinate axes.

Assuming that this is the case, then the sides of the prism parallel to the x, y and z-axes are respectively:
|x2-x1|, |y2-y1| and |z2-z1|
which are 3, 0, -2 respectively.

So the prism is flat like a piece of paper, and area, volume=0.

To find the area, perimeter, or volume of a rectangular prism (also known as a cuboid) using its given points, you'll need to understand a few calculations. Let's go step by step:

1. Determine the dimensions:
- To find the length (L), subtract the x-coordinate of one point from the x-coordinate of the other point.
- To find the width (W), subtract the y-coordinate of one point from the y-coordinate of the other point.
- To find the height (H), subtract the z-coordinate of one point from the z-coordinate of the other point.

Note: Make sure to consider the absolute values to avoid negative values.

2. Calculate the area, perimeter, or volume based on the dimensions:
- To find the area, use the formula: A = 2(LW + LH + WH).
- To find the perimeter, if you mean the perimeter of the base, it would be: P = 2(L + W), and if you mean the total perimeter of all faces, it would be: P = 4(L + W + H).
- To find the volume, use the formula: V = LWH.

Let's apply this to your example:

Given points: (2, 3, 4) and (5, 3, 2)

1. Determine the dimensions:
Length (L) = |5 - 2| = 3
Width (W) = |3 - 3| = 0
Height (H) = |2 - 4| = 2

Note: Since the width is 0, it implies that the object is flat in one direction.

2. Calculate the area, perimeter, or volume based on the dimensions:
- Area (A) = 2(3 * 0 + 3 * 2 + 0 * 2) = 2(0 + 6 + 0) = 12 square units
- Perimeter of the base (P) = 2(3 + 0) = 6 units
- Total perimeter (P) = 4(3 + 0 + 2) = 20 units
- Volume (V) = 3 * 0 * 2 = 0 cubic units

In this example, the rectangular prism has an area of 12 square units, a base perimeter of 6 units, a total perimeter of 20 units, and a volume of 0 cubic units.