------
## 最终结论
```python
import math

def largest_triangle(a, b):
    return (3 * math.sqrt(3) / 4) * a * b
```