give a partial table of values for indices of 3.5, 7.6, 8.9, and 9.75

To find the indices of these numbers, we need to understand what indices mean in the context of a table. An index represents the position of a value within a sequence or a list. In this case, we'll assume that each number corresponds to a specific position in a sequence or list.

Let's start by representing the numbers you provided in a list:

[3.5, 7.6, 8.9, 9.75]

To find the indices, we can use Python code as an example. Here's how you can get the indices for each number:

```python
numbers = [3.5, 7.6, 8.9, 9.75]

indices = []
for number in numbers:
index = numbers.index(number)
indices.append(index)

print(indices)
```

The output of this code will be a list of indices corresponding to each number:

[0, 1, 2, 3]

So, the partial table of values for the given numbers and their indices is:

| Number | Index |
|--------|-------|
| 3.5 | 0 |
| 7.6 | 1 |
| 8.9 | 2 |
| 9.75 | 3 |

Please note that this is just one example of finding the indices in Python. There are other ways to achieve the same result depending on the programming language you are using.