Skip to content

Commit 981c628

Browse files
committed
wording
1 parent def7481 commit 981c628

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -542,19 +542,19 @@ Although we cannot express the result of `x=1`, we *can* say that, as we approac
542542

543543
## prime
544544

545-
The prime symbol (``) is often used in variable names to describe things which are similar, without giving it a different name altogether.
545+
The prime symbol (``) is often used in variable names to describe things which are similar, without giving it a different name altogether. Sometimes, it is used to describe the "next value" after some transformation.
546546

547547
For example, if we take a 2D point *(x, y)* and rotate it, you might name the result *(x′, y′)*. Or, the *transpose* of matrix **M** might be named **M′**.
548548

549549
In code, we typically just assign the variable a more descriptive name, like `transformedPosition`.
550550

551-
For a mathematical [function](#function), the prime symbol describes the [*derivative*](#derivative) of that function. Let's take our earlier function:
551+
For a mathematical [function](#function), the prime symbol describes the [*derivative*](#derivative) of that function. This will be explained shortly. Let's take our earlier function:
552552

553553
![function2](img/function2.png)
554554

555555
<!-- f\left (x \right ) = x^{2} -->
556556

557-
The derivative might be written as:
557+
The derivative would be written as:
558558

559559
![prime1](img/prime1.png)
560560

@@ -634,7 +634,7 @@ From this, we can deduce that **as *dx* approaches zero margin of error, we get
634634

635635
![deriv3](img/deriv3.png)
636636

637-
Thus, the *derivative* of our *x*<sup>2</sup> function can be succinctly described as below. Note the [prime](#prime) in the name.
637+
Thus, the *derivative* of our *x*<sup>2</sup> function can be succinctly described as below. Note the [prime](#prime) in the name.
638638

639639
![prime1](img/prime1.png)
640640

0 commit comments

Comments
 (0)