Multiplication
This node multiplies two numbers together and returns the product.
The Multiplication node performs mathematical multiplication with validation and overflow protection.
The Multiplication node takes two numeric inputs and calculates their product. It includes built-in validation to ensure inputs are valid numbers and that the result stays within acceptable bounds.
Numbers
| Data | Description |
|---|
| First Number | The first number to multiply (default: 0) |
| Second Number | The second number to multiply (default: 0) |
Actions
| Signal | Description |
|---|
| Do | Triggers the multiplication calculation |
Outputs
| Data | Description |
|---|
| Result | The product of the two input numbers |
| Signal | Description |
|---|
| Done | Triggered when the calculation is complete |
Usage
Example Use Cases
- Area Calculations: Width × Height for rectangles
- Financial Operations: Price × Quantity, Tax calculations
- Scaling Operations: Applying scale factors to values
- Game Development: Damage multipliers, experience bonuses
Examples
| First Number | Second Number | Result |
|---|
| 5 | 3 | 15 |
| 2.5 | 4 | 10 |
| -3 | 7 | -21 |
| 0 | 100 | 0 |