Wayve launches $85M employee tender offer at $8.5B valuation
Back to Tutorials
techTutorialbeginner

Wayve launches $85M employee tender offer at $8.5B valuation

June 30, 202618 views5 min read

Learn how to create a simulation that calculates employee tender offer values, helping you understand how AI startups like Wayve use these strategic tools to attract and retain talent.

Introduction

In today's competitive tech landscape, AI startups like Wayve are using innovative strategies to attract and retain top talent. One such strategy is the employee tender offer, where companies offer their employees the chance to purchase shares at a discounted rate. This tutorial will teach you how to create a simple simulation of how these employee tender offers work, helping you understand the underlying mechanics of this popular startup strategy.

Prerequisites

Before starting this tutorial, you'll need:

  • A basic understanding of Python programming
  • Python 3.x installed on your computer
  • Some familiarity with financial concepts like stock valuation and share prices

What You'll Learn

This tutorial will show you how to build a simulation that calculates employee tender offer values based on company valuation, share price, and employee participation. You'll understand how these offers work in practice and why they're becoming popular among AI startups.

Step-by-Step Instructions

Step 1: Set Up Your Python Environment

First, we need to create a Python script to simulate the employee tender offer calculation. Open your preferred code editor and create a new file called employee_tender.py.

Step 2: Import Required Libraries

Let's start by importing the necessary Python libraries:

import math

def calculate_tender_value(company_valuation, total_shares, employee_shares, offer_price):
    """
    Calculate the value of an employee tender offer
    
    Args:
        company_valuation (float): Total company valuation in millions
        total_shares (int): Total number of shares in the company
        employee_shares (int): Number of shares the employee owns
        offer_price (float): Offer price per share in dollars
    
    Returns:
        dict: Contains calculated values for the tender offer
    """
    pass

Step 3: Understand the Calculation Logic

The key to understanding employee tender offers is knowing that they're typically offered at a discount to the current market price. In our simulation, we'll calculate the potential value an employee could gain from participating in such an offer.

Step 4: Implement the Core Calculation Function

Now let's implement the actual calculation function:

def calculate_tender_value(company_valuation, total_shares, employee_shares, offer_price):
    """
    Calculate the value of an employee tender offer
    
    Args:
        company_valuation (float): Total company valuation in millions
        total_shares (int): Total number of shares in the company
        employee_shares (int): Number of shares the employee owns
        offer_price (float): Offer price per share in dollars
    
    Returns:
        dict: Contains calculated values for the tender offer
    """
    # Calculate current share price based on company valuation
    current_share_price = company_valuation * 1000000 / total_shares
    
    # Calculate the difference between current price and offer price
    price_difference = current_share_price - offer_price
    
    # Calculate potential gain per share
    gain_per_share = price_difference
    
    # Calculate total potential gain for employee
    total_gain = gain_per_share * employee_shares
    
    # Calculate the percentage discount
    discount_percentage = (price_difference / current_share_price) * 100
    
    return {
        'current_share_price': round(current_share_price, 2),
        'offer_price': offer_price,
        'price_difference': round(price_difference, 2),
        'gain_per_share': round(gain_per_share, 2),
        'total_gain': round(total_gain, 2),
        'discount_percentage': round(discount_percentage, 2)
    }

Step 5: Create a Test Scenario

Let's create a realistic test scenario based on the Wayve example. We'll use the company's $8.5B valuation:

def main():
    # Wayve-like scenario
    company_valuation = 8500  # $8.5 billion
    total_shares = 100000000  # 100 million shares
    employee_shares = 5000  # Employee owns 5,000 shares
    offer_price = 10.0  # Offer price per share is $10
    
    # Calculate the tender offer values
    result = calculate_tender_value(company_valuation, total_shares, employee_shares, offer_price)
    
    # Display the results
    print("Employee Tender Offer Analysis")
    print("================================")
    print(f"Company Valuation: ${company_valuation} million")
    print(f"Total Shares: {total_shares:,}")
    print(f"Employee Shares: {employee_shares:,}")
    print(f"Offer Price: ${offer_price}")
    print()
    print("Calculation Results:")
    print(f"Current Share Price: ${result['current_share_price']}")
    print(f"Price Difference: ${result['price_difference']}")
    print(f"Discount Percentage: {result['discount_percentage']}%")
    print(f"Total Potential Gain: ${result['total_gain']}")
    print()
    print("Why This Matters:")
    print("- The discount gives employees upside potential")
    print("- It aligns employee interests with company growth")
    print("- It's a cost-effective way to retain talent")

if __name__ == "__main__":
    main()

Step 6: Run the Simulation

Save your file and run it using Python:

python employee_tender.py

You should see output similar to:

Employee Tender Offer Analysis
================================
Company Valuation: $8500 million
Total Shares: 100,000,000
Employee Shares: 5,000
Offer Price: $10.0

Calculation Results:
Current Share Price: $85.0
Price Difference: $75.0
Discount Percentage: 88.24%
Total Potential Gain: $375,000.0

Why This Matters:
- The discount gives employees upside potential
- It aligns employee interests with company growth
- It's a cost-effective way to retain talent

Step 7: Experiment with Different Scenarios

Now let's modify the script to test different scenarios:

def test_multiple_scenarios():
    scenarios = [
        {'name': 'Wayve-like', 'valuation': 8500, 'shares': 100000000, 'offer': 10.0, 'employee_shares': 5000},
        {'name': 'Smaller Startup', 'valuation': 1000, 'shares': 50000000, 'offer': 5.0, 'employee_shares': 1000},
        {'name': 'High Valuation', 'valuation': 15000, 'shares': 200000000, 'offer': 15.0, 'employee_shares': 2000}
    ]
    
    for scenario in scenarios:
        print(f"\n{scenario['name']} Scenario:")
        result = calculate_tender_value(
            scenario['valuation'], 
            scenario['shares'], 
            scenario['employee_shares'], 
            scenario['offer']
        )
        print(f"  Current Price: ${result['current_share_price']}")
        print(f"  Discount: {result['discount_percentage']}%")
        print(f"  Potential Gain: ${result['total_gain']}")

Step 8: Add User Input Functionality

To make it more interactive, let's add user input capabilities:

def interactive_tender_calculator():
    print("Interactive Employee Tender Calculator")
    print("=====================================")
    
    try:
        company_valuation = float(input("Enter company valuation (in millions): "))
        total_shares = int(input("Enter total number of shares: "))
        employee_shares = int(input("Enter your number of shares: "))
        offer_price = float(input("Enter offer price per share: $"))
        
        result = calculate_tender_value(company_valuation, total_shares, employee_shares, offer_price)
        
        print(f"\nResults:")
        print(f"Current Share Price: ${result['current_share_price']}")
        print(f"Your Potential Gain: ${result['total_gain']}")
        print(f"You're getting a {result['discount_percentage']}% discount")
        
    except ValueError:
        print("Please enter valid numbers")

# Uncomment this line to run the interactive calculator
# interactive_tender_calculator()

Summary

In this tutorial, you've learned how to create a simulation of employee tender offers, a popular strategy used by AI startups like Wayve to attract and retain talent. You've understood how these offers work by calculating the discount an employee receives compared to the current market price.

The key concepts you've learned:

  • How company valuation translates to share prices
  • The mathematical relationship between offer price and current market price
  • How to calculate potential gains for employees
  • Why these offers are strategically valuable for startups

This simulation helps illustrate why employee tenders are becoming increasingly popular in the AI startup ecosystem. They provide a powerful mechanism for aligning employee interests with company growth while offering attractive financial incentives. Understanding this concept is crucial for anyone interested in startup finance or career planning in the tech industry.

Related Articles